  | OrchestratorConfigSetAsyncIntakeSupplier Method (FuncTaskTupleIEnumerableTupleString, Object, Int32) | 
 
            Designates an asynchronous intake supplier function.
            This overload of the 
SetAsyncIntakeSupplier method is intended for use in case of record-centric intake from multiple sources and no need to access the global cache.
            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
Syntaxpublic void SetAsyncIntakeSupplier(
	Func<Task<Tuple<IEnumerable<Tuple<string, Object>>, int>>> supplierToSet
)
Public Sub SetAsyncIntakeSupplier ( 
	supplierToSet As Func(Of Task(Of Tuple(Of IEnumerable(Of Tuple(Of String, Object)), Integer)))
)
Parameters
- supplierToSet
 - Type: SystemFuncTaskTupleIEnumerableTupleString, Object, Int32
A function that takes no parameters and returns a task promising a tuple containing a record (expressed as a sequence of key-value pairs) and a corresponding source number.
            The function has no access to global cache. 
See Also