AdfGroupActivityDependencyMode Enumeration
The AdfGroupActivityDependencyMode enumeration provides values that indicate whether or not activity dependencies are automatically created for a given container activity.
Enumeration Values
Name | Summary |
---|---|
Parallel | Parallel specifies that all activities will run concurrently. |
LinearOnCompleted | LinearOnCompleted 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. |
LinearOnSucceeded | LinearOnSucceeded 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. |
LinearOnSkipped | LinearOnSkipped 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. |
LinearOnFailed | LinearOnFailed 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. |