Click or drag to resize

OrchestratorConfigSetIntakeSupplier Method (FuncIGlobalCache, TupleIEnumerableTupleString, Object, Int32)

Designates an intake supplier function. This overload of the SetIntakeSupplier method is intended for use in case of record-centric intake from multiple sources 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 SetIntakeSupplier(
	Func<IGlobalCache, Tuple<IEnumerable<Tuple<string, Object>>, int>> supplierToSet
)

Parameters

supplierToSet
Type: SystemFuncIGlobalCache, TupleIEnumerableTupleString, Object, Int32
A function that takes a single parameter (reference to global cache) and returns a tuple containing a record (expressed as a sequence of key-value pairs) and the corresponding source number.
See Also