Overload List
Name | Description | |
---|---|---|
![]() | DispatchAndWait(Action) |
Creates a new Task for the target Dispatcher (default: the main Dispatcher) based upon the given action.
This method will wait for the task completion.
|
![]() | DispatchAndWait<(Of <<'(T>)>>)(Func<(Of <<'(T>)>>)) |
Creates a new Task for the target Dispatcher (default: the main Dispatcher) based upon the given function.
This method will wait for the task completion and returns the return value.
|
![]() | DispatchAndWait(Task) |
Dispatches the given task to the target Dispatcher (default: the main Dispatcher).
This method will wait for the task completion.
|
![]() | DispatchAndWait(Action, Single) |
Creates a new Task for the target Dispatcher (default: the main Dispatcher) based upon the given action.
This method will wait for the task completion or the timeout.
|
![]() | DispatchAndWait<(Of <<'(T>)>>)(Func<(Of <<'(T>)>>), Single) |
Creates a new Task for the target Dispatcher (default: the main Dispatcher) based upon the given function.
This method will wait for the task completion or the timeout and returns the return value.
|
![]() | DispatchAndWait(Task, Single) |
Dispatches the given task to the target Dispatcher (default: the main Dispatcher).
This method will wait for the task completion or the timeout.
|