IJobSchedulerWaitUntilDone Method |
Blocks until all tasks in this job complete or the operation times out.
The callback passed in for the heartbeat is called with the period
specified by the millisecondsHeartbeat argument.
Namespace:
AGI.Parallel.Client
Assembly:
AGI.Parallel.Client (in AGI.Parallel.Client.dll) Version: 2.9.0.1601 (2.9.0.1601)
Syntax bool WaitUntilDone(
Guid jobId,
int millisecondsTimeout,
Action heartbeatCallback,
int millisecondsHeartbeat
)
Function WaitUntilDone (
jobId As Guid,
millisecondsTimeout As Integer,
heartbeatCallback As Action,
millisecondsHeartbeat As Integer
) As Boolean
Parameters
- jobId
- Type: SystemGuid
The job id for the job to be submitted. - millisecondsTimeout
- Type: SystemInt32
The timeout (in milliseconds). - heartbeatCallback
- Type: SystemAction
The heartbeat callback. - millisecondsHeartbeat
- Type: SystemInt32
The heartbeat period (in milliseconds).
Return Value
Type:
Booleantrue if job completed,
false if timed-out.
Exceptions See Also