Expand description
Ergonomic abstractions to async programming in Bevy for all platforms.
Structs§
- Async
Receiver - A channel that catches an
AsyncTask
result. - Async
Task - A wrapper type around an async future. The future may be executed
asynchronously by an
TaskRunner
orTaskPool
bevy system parameter. - Duration
- A
Duration
type to represent a span of time, typically used for system timeouts. - Task
Pool - A Bevy
SystemParam
to execute many similarAsyncTask
s in the background simultaneously. - Task
Runner - A Bevy
SystemParam
to 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
TimedTaskRunner
orTimedTaskPool
bevy system parameter. - Timed
Task Pool - A Bevy
SystemParam
to execute many similarAsyncTask
s in the background simultaneously. - Timed
Task Runner - A Bevy
SystemParam
to execute async tasks in the background with a timeout. - Timeout
Error - A timeout occurred on a timed asyncronous task.