Expand description
Ergonomic abstractions to async programming in Bevy for all platforms.
Structs§
- Async
Receiver - A channel that catches an
AsyncTaskresult. - Async
Task - A wrapper type around an async future. The future may be executed
asynchronously by an
TaskRunnerorTaskPoolbevy system parameter. - Duration
- A
Durationtype to represent a span of time, typically used for system timeouts. - Task
Pool - A Bevy
SystemParamto execute many similarAsyncTasks in the background simultaneously. - Task
Runner - A Bevy
SystemParamto execute async tasks in the background. - Timed
Async Task - A wrapper type around an async future with a timeout. The future may be executed
asynchronously by an
TimedTaskRunnerorTimedTaskPoolbevy system parameter. - Timed
Task Pool - A Bevy
SystemParamto execute many similarAsyncTasks in the background simultaneously. - Timed
Task Runner - A Bevy
SystemParamto execute async tasks in the background with a timeout. - Timeout
Error - A timeout occurred on a timed asyncronous task.