Class WaitTransformation

The WaitTransformation will wait for other components in the data flow before it continues to process data. Alternatively, the WaitTransformation can wait for one or more TaskCompletionSources before data can pass.

Inheritance
object
DataFlowSource<ExpandoObject>
DataFlowTransformation<ExpandoObject, ExpandoObject>
WaitTransformation<ExpandoObject>
WaitTransformation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class WaitTransformation : WaitTransformation<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowTransformation<ExpandoObject, ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowSource, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent

Constructors

WaitTransformation()

Declaration
    public WaitTransformation()

WaitTransformation(params DataFlowComponent[])

Declaration
    public WaitTransformation(params DataFlowComponent[] dataFlowComponents)
Parameters
TypeNameDescription
DataFlowComponent[]dataFlowComponents

Implements