Method | Description | |
---|---|---|
WaitForAnyTaskState ( this task, System.TimeSpan timeout ) : bool |
Waits for a task to reach one or more given states
|
|
WaitForAnyTaskState ( this task, System.TimeSpan timeout, Predicate |
Waits for a task to reach a given state
|
|
WaitForAnyTaskState ( this task ) : void |
Waits for a task to reach one or more given states
|
|
WaitForAnyTaskState ( this task, Predicate |
Waits for a task to reach a given state
|
|
WaitForFinish ( this task ) : void |
public static WaitForAnyTaskState ( this task, System.TimeSpan timeout ) : bool | ||
task | this | The task to wait on |
timeout | System.TimeSpan | A timeout |
return | bool |
public static WaitForAnyTaskState ( this task, System.TimeSpan timeout, Predicate |
||
task | this | The task to wait on |
timeout | System.TimeSpan | A timeout |
acceptState | Predicate |
A predicate that validates for a given state |
return | bool |
public static WaitForAnyTaskState ( this task ) : void | ||
task | this | The task to wait on |
return | void |
public static WaitForAnyTaskState ( this task, Predicate |
||
task | this | The task to wait on |
acceptState | Predicate |
A predicate that validates for a given state |
return | void |
public static WaitForFinish ( this task ) : void | ||
task | this | |
return | void |