Class BlockTransformation<TInput>

A block transformation will wait for all data from the flow to be loaded into its buffer. After all data is in the buffer, the transformation function is executed for the complete data and the result posted into the targets. The block transformations allows you to access all data in the flow in one generic collection. But as this block any processing until all data is buffered, it will also need to store the whole data in memory.

Inheritance
object
DataFlowTransformation<TInput, TInput>
BatchTransformation<TInput, TInput>
BlockTransformation<TInput, TInput>
BlockTransformation<TInput>
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 BlockTransformation<TInput> : BlockTransformation<TInput, TInput>, ILoggableTask, IDataFlowLogging, IDataFlowTransformation<TInput, TInput>, IDataFlowSource<TInput>, IDataFlowSource, IDataFlowDestination<TInput>, IDataFlowDestination, IDataFlowComponent
Type Parameters
NameDescription
TInput

Constructors

BlockTransformation()

Declaration
    public BlockTransformation()

BlockTransformation(Func<TInput[], TInput[]>)

Declaration
    public BlockTransformation(Func<TInput[], TInput[]> blockTransformationFunc)
Parameters
TypeNameDescription
System.Func<T, TResult><TInput[], TInput[]>blockTransformationFunc

Implements