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.

Inheritance
object
DataFlowDestination<ExpandoObject>
CustomBatchDestination<ExpandoObject>
CustomBatchDestination
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.DataFlow.Connectors
Assembly: ETLBox.dll
Syntax
    public class CustomBatchDestination : CustomBatchDestination<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowBatchDestination<ExpandoObject>, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent, IDataFlowBatchDestination

Constructors

CustomBatchDestination()

Declaration
    public CustomBatchDestination()

CustomBatchDestination(Action<ExpandoObject[], int>)

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

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

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

Implements