IJob.WaitUntilDone Method (Int32, Action, Int32) |
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.Infrastructure
Assembly:
AGI.Parallel.Infrastructure (in AGI.Parallel.Infrastructure.dll) Version: 2.10.0.1777 (2.10.0.1777)
Syntaxbool WaitUntilDone(
int millisecondsTimeout,
Action heartbeatCallback,
int millisecondsHeartbeat
)
Function WaitUntilDone (
millisecondsTimeout As Integer,
heartbeatCallback As Action,
millisecondsHeartbeat As Integer
) As Boolean
Parameters
- millisecondsTimeout
- Type: System.Int32
The timeout (in milliseconds). - heartbeatCallback
- Type: System.Action
The heartbeat callback. - millisecondsHeartbeat
- Type: System.Int32
The heartbeat period (in milliseconds).
Return Value
Type:
BooleanTrue if job completed,
False if timed-out.
Exceptions
See Also