Click or drag to resize

OrchestratorConfigSetOutputConsumer Method (ActionTupleExternalLine, Int32, IGlobalCache)

Designates an output consumer action. This is the universal overload of the SetOutputConsumer method. It may be used in case of any output to multiple targets 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 SetOutputConsumer(
	Action<Tuple<ExternalLine, int>, IGlobalCache> consumerToSet
)

Parameters

consumerToSet
Type: SystemActionTupleExternalLine, Int32, IGlobalCache
An action (void function) that takes 2 parameters: (1) a tuple containing an ExternalLine object and a source number, and (2) a reference to global cache.
Remarks
When the method parameter (the consumerToSet action) is expressed using lambda expression, it may be necessary to disambiguate the type of the actions's argument; for example:
config.SetOutputConsumer((Tuple<ExternalLine, int> tpl, IGlobalCache gc) => { ... });
See Also