async

Creates an async task. An async task is a task that will be running in a separate fiber, independent from the current fiber.

void
async
(
void delegate
()
task
)

Parameters

task
Type: void delegate
()

The task to run.

Meta