Skip to main content

Enum AdfGroupActivityDependencyMode

Namespace: Varigence.Languages.Biml.DataFactory

Assembly: Biml.dll

C#


public enum AdfGroupActivityDependencyMode

Fields

FieldsDescription
LinearOnCompletedLinearOnCompleted will automatically create Completed dependencies so that activities will run one after the other in the order that they are specified in the Biml. LinearOnCompleted is primarily useful for scripting scenarios where creating activity dependencies would be tedious.
LinearOnFailedLinearOnFailed will automatically create Failed dependencies so that activities will run one after the other in the order that they are specified in the Biml. LinearOnFailed is primarily useful for scripting scenarios where creating activity dependencies would be tedious.
LinearOnSkippedLinearOnSkipped will automatically create Skipped dependencies so that activities will run one after the other in the order that they are specified in the Biml. LinearOnSkipped is primarily useful for scripting scenarios where creating activity dependencies would be tedious.
LinearOnSucceededLinearOnSucceeded will automatically create Succeeded dependencies so that activities will run one after the other in the order that they are specified in the Biml. LinearOnSucceeded is primarily useful for scripting scenarios where creating activity dependencies would be tedious.
ParallelParallel specifies that all activities will run concurrently.