  | JetClientWaitForJobCompletion(Guid, Int32, Int32) Method | 
            Waits until the specified job has finished.
            
Namespace: Ookii.Jumbo.JetAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic 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  Guid
 - The job ID of the job to wait for.
 - millisecondsTimeout  Int32
 - The maximum amount of time to wait.
 - millisecondsInterval  Int32
 - The interval at which to check for job completion.
 
Return Value
Boolean if the job finished, or 
 if the timeout expired.
See Also