Click or drag to resize

OrchestratorConfigSetOutputConsumer Method (ActionExternalLine)

Designates an output consumer action. This overload of the SetOutputConsumer method can be used in case of any output to a single target and no need to access the global cache.

Namespace:  Mavidian.DataConveyer.Orchestrators
Assembly:  DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
Syntax
public void SetOutputConsumer(
	Action<ExternalLine> consumerToSet
)

Parameters

consumerToSet
Type: SystemActionExternalLine
An action (void function) that takes a single parameter containing an ExternalLine object. The action has no access to global cache and is suitable in case of a single target (it will direct all output to target number 1).
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((ExternalLine l) => { ... });
See Also