ProcessBehaviors Enumeration

Enumeration used for defining various types of transform processing.

Namespace:  Dundas.BI.Data.Transforms
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
[FlagsAttribute]
public enum ProcessBehaviors
Members
  Member nameValueDescription
None0 The processing type is not set.
SingleRecord1 The transform operates on one record at a time. This means that each record can be processed independently.
MultipleRecords2 The transform operates on multiple records at a time. This means that records can be processed only after the entire group has been loaded.
SingleElement4 The transform can be applied to a single input element.
MultipleElements8 The transform can be applied to all selected input elements.
Inception16 The transform node the first process operation to be executed. It usually is a data select process.
Step32 The transform node is an intermediate process step.
Closure64 The transform node closes the process. It usually consists of a DataCube entity.
See Also