Click or drag to resize

JobRunnerBaseTStarted, TProgress, TEvents, TCompleted, TStartJobArgs Constructor

Create instance.

Namespace:  SOS.SDK.Tools.Runners
Assembly:  SOS.SDK (in SOS.SDK.dll) Version: 7.6.1.5742
Syntax
C#
protected JobRunnerBase(
	IInfrascaleClient client,
	Action<TStarted> onStarted = null,
	Action<TProgress> onProgress = null,
	Action<TEvents> onEvents = null,
	Action<TCompleted> onCompleted = null
)

Parameters

client
Type: SOS.SDKIInfrascaleClient
Client for Infrascale Service.
onStarted (Optional)
Type: SystemActionTStarted
Handler for Started message. Handles only events for target Job.
onProgress (Optional)
Type: SystemActionTProgress
Handler for Progress messages. Handles only events for target Job.
onEvents (Optional)
Type: SystemActionTEvents
Handler for Events messages. Handles only events for target Job.
onCompleted (Optional)
Type: SystemActionTCompleted
Handler for Completed message. Handles only events for target Job.
See Also