Class CachedBatchTransformation

Inheritance
object
DataFlowSource<ExpandoObject>
DataFlowTransformation<ExpandoObject, ExpandoObject>
BatchTransformation<ExpandoObject, ExpandoObject>
CachedBatchTransformation<ExpandoObject, ExpandoObject, ExpandoObject>
CachedBatchTransformation
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 CachedBatchTransformation : CachedBatchTransformation<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowTransformation<ExpandoObject, ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowSource, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent

Constructors

CachedBatchTransformation()

Declaration
    public CachedBatchTransformation()

CachedBatchTransformation(int, Func<ExpandoObject[], IEnumerable<ExpandoObject>, ExpandoObject[]>)

Declaration
    public CachedBatchTransformation(int batchSize, Func<ExpandoObject[], IEnumerable<ExpandoObject>, ExpandoObject[]> batchTransformationFunc)
Parameters
TypeNameDescription
intbatchSize
System.Func<T1, T2, TResult><ExpandoObject[], System.Collections.Generic.IEnumerable<T><ExpandoObject>, ExpandoObject[]>batchTransformationFunc

CachedBatchTransformation(int)

Declaration
    public CachedBatchTransformation(int batchSize)
Parameters
TypeNameDescription
intbatchSize

Implements