Enum SequentialWork.ExecutableWorkDataFlowOptions
Specifies how input will flow to the children of the sequence.
Namespace: DNVGL.One.Compute.Core.FlowModel
Assembly: DNVGL.One.Compute.Core.dll
Syntax
public enum SequentialWork.ExecutableWorkDataFlowOptions
Fields
Name | Description |
---|---|
Pipeline | The sequence input goes to the first work in the sequence, then the output from one work will be input for the next child. |
SameInput | The same sequence input is given to all children. |
SplitCollection | The sequence must be a collection of equal length as the sequence itself. The input to the children are taken from the input collection in the order of the children. |