Click or drag to resize

OrchestratorConfigOutputDisposer Property

An action intended to dispose any output targets and related resources that were opened by the OutputInitializer function. Data Conveyer calls this action a single time after completing orchestrator processing (when the orchestrator is disposed). However, if TextOutputConsumer or AsyncTextOutputConsumer action is not defined; then this function is not called. The OutputDisposer action accepts a single parameter (IGlobalCache) and returns void (Action<IGlobalCache>). If not supplied, Data Conveyer assumes empty action, i.e.:
gc => { }
Any exception thrown by this function will be logged, but otherwise ignored.

Namespace:  Mavidian.DataConveyer.Orchestrators
Assembly:  DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
Syntax
public Action<IGlobalCache> OutputDisposer { get; set; }

Property Value

Type: ActionIGlobalCache
See Also