| OrchestratorConfigAsyncTextIntakeSupplier Property |
An asynchronous function that supplies a task promising contents of a single text line to be fed into Data Conveyer. (Func<Task<string>>).
When end of data is reached, the function must return null (end of data mark).
The
AsyncTextIntakeSupplier function is a simplified version of the
AsyncIntakeSupplier function where the following restrictions apply:
- Input data kind is textual such as Delimited, Flat, etc. (and not for example XML).
- All lines are associated with a single source.
- No access to global cache.
Namespace:
Mavidian.DataConveyer.Orchestrators
Assembly:
DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
Syntax public Func<Task<string>> AsyncTextIntakeSupplier { get; set; }
Public Property AsyncTextIntakeSupplier As Func(Of Task(Of String))
Get
Set
Property Value
Type:
FuncTaskStringRemarks See Also