Class BlockTransformation
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.
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 : BlockTransformation<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowTransformation<ExpandoObject, ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowSource, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent
Constructors
BlockTransformation()
Declaration
public BlockTransformation()
BlockTransformation(Func<ExpandoObject[], ExpandoObject[]>)
Declaration
public BlockTransformation(Func<ExpandoObject[], ExpandoObject[]> blockTransformationFunc)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T, TResult><ExpandoObject[], ExpandoObject[]> | blockTransformationFunc |