Click or drag to resize

OrchestratorConfigSetAsyncIntakeSupplier Method (FuncIGlobalCache, TaskTupleExternalLine, Int32)

Designates an asynchronous intake supplier function. This is the universal overload of the SetAsyncIntakeSupplier method. It may be used in case of any input from multiple sources when access to the global cache is needed. In most practical scenarios, other overloads are more suitable (easier to implement).

Namespace:  Mavidian.DataConveyer.Orchestrators
Assembly:  DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
Syntax
public void SetAsyncIntakeSupplier(
	Func<IGlobalCache, Task<Tuple<ExternalLine, int>>> supplierToSet
)

Parameters

supplierToSet
Type: SystemFuncIGlobalCache, TaskTupleExternalLine, Int32
A function that takes a single parameter (reference to global cache) and returns a task promising a tuple containing an ExternalLine object and a source number.
See Also