 | JetClientWaitForJobCompletion(Guid, Int32) Method |
Waits until the specified job is complete, printing progress updates to the console.
Namespace: Ookii.Jumbo.JetAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic bool WaitForJobCompletion(
Guid jobId,
int pollIntervalMilliseconds = 1000
)
Public Function WaitForJobCompletion (
jobId As Guid,
Optional pollIntervalMilliseconds As Integer = 1000
) As Boolean
public:
bool WaitForJobCompletion(
Guid jobId,
int pollIntervalMilliseconds = 1000
)
member WaitForJobCompletion :
jobId : Guid *
?pollIntervalMilliseconds : int
(* Defaults:
let _pollIntervalMilliseconds = defaultArg pollIntervalMilliseconds 1000
*)
-> bool
Parameters
- jobId Guid
- The job ID.
- pollIntervalMilliseconds Int32 (Optional)
- The poll interval in milliseconds.
Return Value
Boolean if the job completed successfully; otherwise,
.
See Also