ContainerConstraintMode Enumeration
The ContainerConstraintMode enumeration provides values that indicate whether or not task precedence constraints are automatically created for a given container.
Enumeration Values
Name | Summary |
---|---|
Linear | Linear will automatically create Success precedence constraints so that tasks will run one after the other in the order that they are specified in the Biml. Linear is primarily useful for scripting scenarios where creating precedence constraints would be tedious. |
Parallel | Parallel directly matches the SSIS behavior and will require that precedence constraints are created manually for all task connections. |
LinearOnCompletion | LinearOnCompletion will automatically create Completion precedence constraints so that tasks will run one after the other in the order that they are specified in the Biml. LinearOnCompletion is primarily useful for scripting scenarios where creating precedence constraints would be tedious. |
LinearOnSuccess | LinearOnSuccess will automatically create Success precedence constraints so that tasks will run one after the other in the order that they are specified in the Biml. LinearOnSuccess is primarily useful for scripting scenarios where creating precedence constraints would be tedious. This option is identical to the Linear option. |