| OrchestratorConfigSetAsyncIntakeSupplier Method (FuncTaskExternalLine) |
Designates an asynchronous intake supplier function.
This overload of the
SetAsyncIntakeSupplier method is intended for use in case of any intake from a single source and no need to access the global cache.
Namespace:
Mavidian.DataConveyer.Orchestrators
Assembly:
DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
Syntax public void SetAsyncIntakeSupplier(
Func<Task<ExternalLine>> supplierToSet
)
Public Sub SetAsyncIntakeSupplier (
supplierToSet As Func(Of Task(Of ExternalLine))
)
Parameters
- supplierToSet
- Type: SystemFuncTaskExternalLine
A function that takes no parameters and returns a task promising an ExternalLine object.
The function has no access to global cache and is suitable in case of a single source intake (the implied source number is 1).
See Also