Enum ContainerConstraintMode
public enum ContainerConstraintMode
Fields
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. |
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. |
Parallel | Parallel directly matches the SSIS behavior and will require that precedence constraints are created manually for all task connections. |