Rebornbuddy
|
Represents an awaiter for a CoroutineTask<T>. This struct is used to await the completion of a coroutine task that returns a value. More...
Public Member Functions | |
T | GetResult () |
Ends the await on the coroutine task and retrieves the result. | |
void | OnCompleted (Action continuation) |
Schedules the continuation action that is invoked when the coroutine task completes. |
Properties | |
bool | IsCompleted [get] |
Gets a value indicating whether the coroutine task has completed. |
Represents an awaiter for a CoroutineTask<T>. This struct is used to await the completion of a coroutine task that returns a value.
T | The type of the result returned by the coroutine task. |
T ff14bot.Behavior.CoroutineTaskAwaiter< T >.GetResult | ( | ) |
Ends the await on the coroutine task and retrieves the result.
void ff14bot.Behavior.CoroutineTaskAwaiter< T >.OnCompleted | ( | Action | continuation | ) |
Schedules the continuation action that is invoked when the coroutine task completes.
continuation | The action to invoke when the coroutine task completes. |
|
get |
Gets a value indicating whether the coroutine task has completed.