Class CustomBatchSource

Define your own source block. This block allows you to read batches of data from your own custom written functions, which are then send subsequently into your data flow.

Inherited Members
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class CustomBatchSource : CustomBatchSource<ExpandoObject>, IDataFlowLogging, IDataFlowExecutableSource<ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowExecutableSource, IDataFlowSource, IDataFlowComponent, ILoggableTask

Constructors

CustomBatchSource()

Declaration
    public CustomBatchSource()

CustomBatchSource(Func<int, IEnumerable<ExpandoObject>>, Predicate<int>)

Declaration
    public CustomBatchSource(Func<int, IEnumerable<ExpandoObject>> readFunc, Predicate<int> readingCompleted)
Parameters
TypeNameDescription
Func<int, IEnumerable<ExpandoObject>>readFunc
Predicate<int>readingCompleted

Implements