| OrchestratorConfigSetIntakeSupplier Method (FuncIGlobalCache, TupleExternalLine, Int32) |
Designates an intake supplier function.
This is the universal overload of the
SetIntakeSupplier 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 SetIntakeSupplier(
Func<IGlobalCache, Tuple<ExternalLine, int>> supplierToSet
)
Public Sub SetIntakeSupplier (
supplierToSet As Func(Of IGlobalCache, Tuple(Of ExternalLine, Integer))
)
Parameters
- supplierToSet
- Type: SystemFuncIGlobalCache, TupleExternalLine, Int32
A function that takes a single parameter (reference to global cache) and returns a tuple containing an ExternalLine object and a source number.
See Also