Click or drag to resize

JobSessionAggregatedListenerBaseTStarted, TProgress, TEvents, TCompleted Constructor

Create instance.

Namespace:  SOS.SDK.Tools.Listeners.AggregatedListeners
Assembly:  SOS.SDK (in SOS.SDK.dll) Version: 7.6.1.5742
Syntax
C#
public JobSessionAggregatedListenerBase(
	IInfrascaleClient client,
	Action<TStarted> startedHandler = null,
	Action<TProgress> progressHandler = null,
	Action<TEvents> eventsHandler = null,
	Action<TCompleted> completedHandler = null
)

Parameters

client
Type: SOS.SDKIInfrascaleClient
Associated Infrascale Client instance for listening.
startedHandler (Optional)
Type: SystemActionTStarted
A delegate for handle JobStarted callbacks.
progressHandler (Optional)
Type: SystemActionTProgress
A delegate for handle JobProgress callbacks.
eventsHandler (Optional)
Type: SystemActionTEvents
A delegate for handle JobEvents callbacks.
completedHandler (Optional)
Type: SystemActionTCompleted
A delegate for handle JobCompleted callbacks.
See Also