|
static Task | Delay (TimeSpan delay, CancellationToken? cancellationToken=null) |
| Waits until the specified amount of time has passed.
|
|
static Task | DelayFrame (int frames, CancellationToken? cancellationToken=null) |
| Waits until the specified amount of frames have passed.
|
|
static Task | NextFrame () |
| Waits until the next server frame/loop.
|
|
static async Task | Run (Func< Task > function) |
| Queues the specified work to run on the next server cycle.
|
|
static async Task< T > | Run< T > (Func< Task< T > > function) |
|
static IAwaitable | SwitchToMainThread () |
| Safely returns to a NWScript context from another thread.
This must ALWAYS be called after an external callback, or thread switch before using any NWN APIs.
|
|
static Task | WaitUntil (Func< bool > test, CancellationToken? cancellationToken=null) |
| Waits until the specified expression returns true.
|
|
static Task | WaitUntilValueChanged< T > (Func< T > valueSource, CancellationToken? cancellationToken=null) |
| Waits until the specified value source changes.
|
|
static async Task | WhenAll (IEnumerable< Task > tasks) |
|
static async Task | WhenAll (params Task[] tasks) |
| Waits until all the specified tasks have completed.
|
|
static async Task< TResult[]> | WhenAll< TResult > (IEnumerable< Task< TResult > > tasks) |
|
static async Task< TResult[]> | WhenAll< TResult > (params Task< TResult >[] tasks) |
|
static async Task | WhenAny (IEnumerable< Task > tasks) |
|
static async Task | WhenAny (params Task[] tasks) |
| Waits until any of the specified tasks have completed.
NOTE: This will not cancel other tasks that have not finished running. Specify a common CancellationToken in each of the source tasks.
|
|
static async Task< Task< TResult > > | WhenAny< TResult > (IEnumerable< Task< TResult > > tasks) |
|
static async Task< Task< TResult > > | WhenAny< TResult > (params Task< TResult >[] tasks) |
|
Asynchronous tasks and helpers for running NWN APIs in an async context.
Examples
using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace NWN.Anvil.Samples
{
[ServiceBinding(typeof(NwTaskExamples))]
public class NwTaskExamples
{
public NwTaskExamples()
{
_ = DoAsyncStuff();
_ = CancellationTokenExample();
}
private async Task DoAsyncStuff()
{
await Task.Run(() => Thread.Sleep(1000));
Task task1 = Task.
Run(() =>
true);
Task task2 = Task.Run(async () =>
{
await Task.Delay(TimeSpan.FromSeconds(5));
return 20;
});
{
return 20;
});
}
private async Task CancellationTokenExample()
{
CancellationTokenSource tokenSource = new CancellationTokenSource();
Task task2 =
NwTask.
Delay(TimeSpan.FromSeconds(10), tokenSource.Token);
tokenSource.Cancel();
}
}
}