dawait

Undocumented in source.

Members

Functions

async
void async(void delegate() task)

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

await
T await(T task)

Runs the argument in a separate task, waiting for the result.

startScheduler
void startScheduler(void delegate() firstTask)

Starts the scheduler.

Meta