| JetClientWaitForJobCompletion Method (Guid, Int32, Int32) |
Waits until the specified job has finished.
Namespace:
Ookii.Jumbo.Jet
Assembly:
Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax public bool WaitForJobCompletion(
Guid jobId,
int millisecondsTimeout,
int millisecondsInterval
)
Public Function WaitForJobCompletion (
jobId As Guid,
millisecondsTimeout As Integer,
millisecondsInterval As Integer
) As Boolean
public:
bool WaitForJobCompletion(
Guid jobId,
int millisecondsTimeout,
int millisecondsInterval
)
member WaitForJobCompletion :
jobId : Guid *
millisecondsTimeout : int *
millisecondsInterval : int -> bool
Parameters
- jobId
- Type: SystemGuid
The job ID of the job to wait for. - millisecondsTimeout
- Type: SystemInt32
The maximum amount of time to wait. - millisecondsInterval
- Type: SystemInt32
The interval at which to check for job completion.
Return Value
Type:
Boolean if the job finished, or
if the timeout expired.
See Also