Class CustomBatchDestination

Define your own batch destination block. This block accepts all data from the flow and will create batches of incoming data which can be processed with the WriteBatchAction.

Inherited Members
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class CustomBatchDestination : CustomBatchDestination<ExpandoObject>, IDataFlowLogging, IDataFlowBatchDestination<ExpandoObject>, IDataFlowDestination<ExpandoObject>, IDataFlowBatchDestination, IDataFlowDestination, IDataFlowComponent, ILoggableTask

Constructors

CustomBatchDestination()

Declaration
    public CustomBatchDestination()

CustomBatchDestination(Action<ExpandoObject[], int>)

Declaration
    public CustomBatchDestination(Action<ExpandoObject[], int> writeAction)
Parameters
TypeNameDescription
Action<ExpandoObject[], int>writeAction

CustomBatchDestination(int, Action<ExpandoObject[], int>)

Declaration
    public CustomBatchDestination(int batchSize, Action<ExpandoObject[], int> writeAction)
Parameters
TypeNameDescription
intbatchSize
Action<ExpandoObject[], int>writeAction

Implements