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.

Inheritance
object
DataFlowSource<ExpandoObject>
CustomBatchSource<ExpandoObject>
CustomBatchSource
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 CustomBatchSource : CustomBatchSource<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowExecutableSource<ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowSource, IDataFlowComponent, IDataFlowExecutableSource

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
System.Func<T, TResult><int, System.Collections.Generic.IEnumerable<T><ExpandoObject>>readFunc
System.Predicate<T><int>readingCompleted

Implements