Terraria v1.4.4.9
Terraria source code documentation
|
Static Public Member Functions | |
static bool | IsSuccess (this Task task) |
static Task | CallVoidFuncWhenFinishAsync< TArg > (this Task task, Action< TArg > func, TArg arg) |
static Task< bool > | ReturnTrueTaskWhenFinishAsync (this Task task) |
static Task | CallTaskFuncWhenFinishAsync< TArg > (this Task task, Func< TArg, Task > func, TArg arg) |
static Task< bool > | CallBoolTaskFuncWhenFinishAsync< TArg > (this Task task, Func< TArg, Task< bool > > func, TArg arg) |
static Task< bool > | ContinueBoolTaskFuncWhenFalseAsync< TArg > (this Task< bool > task, Func< TArg, Task< bool > > func, TArg arg) |
Static Public Attributes | |
static readonly Task< bool > | DoneTaskTrue = Task.FromResult(result: true) |
static readonly Task< bool > | DoneTaskFalse = Task.FromResult(result: false) |
static readonly Task< int > | DoneTaskZero = Task.FromResult(0) |
Static Private Member Functions | |
static async Task | CallVoidFuncWhenFinishCoreAsync< TArg > (this Task task, Action< TArg > func, TArg arg) |
static async Task< bool > | ReturnTrueTaskWhenFinishCoreAsync (this Task task) |
static async Task | CallTaskFuncWhenFinishCoreAsync< TArg > (Task task, Func< TArg, Task > func, TArg arg) |
static async Task< bool > | CallBoolTaskFuncWhenFinishCoreAsync< TArg > (this Task task, Func< TArg, Task< bool > > func, TArg arg) |
static async Task< bool > | ContinueBoolTaskFuncWhenFalseCoreAsync< TArg > (Task< bool > task, Func< TArg, Task< bool > > func, TArg arg) |
Definition at line 5 of file AsyncHelper.cs.