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
AsyncTaskRunner
orAsyncTaskPool
bevy system parameter. - Async
Task Pool - A Bevy
SystemParam
to execute many similarAsyncTask
s in the background simultaneously. - Async
Task Runner - A Bevy
SystemParam
to executeAsyncTask
s individually in the background. - Duration
- A
Duration
type to represent a span of time, typically used for system timeouts.
Enums§
- Task
Error - Errors that may occur from running asynchronous tasks.