Title here
Summary here
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.
Name | Description |
---|---|
TOutput | Type of outgoing data. |
Type | Name | Description |
---|---|---|
Func<int, IEnumerable<TOutput>> | readBatchFunc | Sets the ReadBatchFunc |
Predicate<int> | readingCompleted | Sets the ReadingCompleted |
The function that returns a batch of data row as output. An integer value with the current progress count is the input of the function.
Type | Description |
---|---|
Func<int, IEnumerable<TOutput>> |
This predicate returns true when all rows for the flow are successfully returned from the ReadBatchFunc. An integer value with the current progress count is the input of the predicate.
Type | Description |
---|---|
Predicate<int> |
Type | Name | Description |
---|---|---|
Exception | e |