Enum AdfGroupActivityDependencyMode
public enum AdfGroupActivityDependencyMode
Fields
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. |
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. |
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. |
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. |
Parallel | Parallel specifies that all activities will run concurrently. |