Skip to content

Latest commit

 

History

History
363 lines (354 loc) · 22.3 KB

custombatchsource.md

File metadata and controls

363 lines (354 loc) · 22.3 KB
title description draft images menu weight toc
CustomBatchSource
Details for Class CustomBatchSource (ETLBox.DataFlow)
false
api
parent
etlbox.dataflow
10129
false

{{< rawhtml >}}

        <article class="content wrap" id="_content" data-uid="ETLBox.DataFlow.CustomBatchSource">

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
{{< /rawhtml >}}
    public class CustomBatchSource : CustomBatchSource<ExpandoObject>, IDataFlowLogging, IDataFlowExecutableSource<ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowExecutableSource, IDataFlowSource, IDataFlowComponent, ILoggableTask

{{< rawhtml >}}

Constructors

CustomBatchSource()

Declaration
{{< /rawhtml >}}
    public CustomBatchSource()

{{< rawhtml >}}

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

Declaration
{{< /rawhtml >}}
    public CustomBatchSource(Func<int, IEnumerable<ExpandoObject>> readFunc, Predicate<int> readingCompleted)

{{< rawhtml >}}

Parameters
Type Name Description
Func<int, IEnumerable<ExpandoObject>> readFunc
Predicate<int> readingCompleted

Implements

{{< /rawhtml >}}