Interface IJobOrchestrator
Represents a job orchestrator.
Namespace: DNVGL.One.Compute.Scheduling.Scheduler
Assembly: DNVGL.One.Compute.Scheduling.dll
Syntax
public interface IJobOrchestrator
Properties
View SourceTaskMonitoringInterval
Gets or sets the task status monitoring interval (in seconds).
Declaration
int TaskMonitoringInterval { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The task status monitoring interval (in seconds). |
Methods
View SourceCancelWork(String)
Cancels ongoing work.
Declaration
void CancelWork(string jobId)
Parameters
Type | Name | Description |
---|---|---|
System.String | jobId | The job identifier. |
Work(Job)
Orchestrate the job.
Declaration
void Work(Job job)
Parameters
Type | Name | Description |
---|---|---|
Job | job | The job. |