| OrchestratorConfigTextIntakeSupplier Property |
A function that supplies contents of a single text line to be fed into Data Conveyer. (Func<string>).
When end of data is reached, the function must return null (end of data mark).
The
TextIntakeSupplier function is a simplified version of the
IntakeSupplier 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<string> TextIntakeSupplier { get; set; }
Public Property TextIntakeSupplier As Func(Of String)
Get
Set
Property Value
Type:
FuncStringRemarks
Use of this setting to designate the intake supplier is discouraged. It is recommended to instead call the
SetIntakeSupplier(FuncString) method,
which is functionally equivalent. There are additional overloads of the
SetIntakeSupplier method that better suit many intake scenarios.
See Also