| OrchestratorConfigSetAsyncIntakeSupplier Method (FuncIGlobalCache, TaskIEnumerableTupleString, Object) |
Designates an asynchronous intake supplier function.
This overload of the
SetAsyncIntakeSupplier method is intended for use in case of record-centric intake from a single source when access to the global cache is needed.
To use this overload, the
InputDataKind setting must be either
XML or
JSON or
UnboundJSON. In either case, data returned by this function is processed the same way.
Namespace:
Mavidian.DataConveyer.Orchestrators
Assembly:
DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
Syntax public void SetAsyncIntakeSupplier(
Func<IGlobalCache, Task<IEnumerable<Tuple<string, Object>>>> supplierToSet
)
Public Sub SetAsyncIntakeSupplier (
supplierToSet As Func(Of IGlobalCache, Task(Of IEnumerable(Of Tuple(Of String, Object))))
)
Parameters
- supplierToSet
- Type: SystemFuncIGlobalCache, TaskIEnumerableTupleString, Object
A function that takes a single parameter (reference to global cache) and returns a task promising a record expressed as a sequence of key-value pairs.
The function is suitable in case of a single source intake (the implied source number is 1).
See Also