Table of Contents
WaitableTask.OnDone Method (Action`1, Boolean)

Invoke an action when this task is done.

Syntax
 public void OnDone(
   Action<T> action,
   bool runInSamethread = false
);

Parameters

action
The action to be invoked.
runInSamethread
Whether to run the action in the same thread.
See Also