Crate bevy_async_task
source ·Expand description
Ergonomic abstractions to async programming in Bevy for all platforms.
Structs§
- A channel that catches an
AsyncTaskresult. - A wrapper type around an async future. The future may be executed asynchronously by an
AsyncTaskRunnerorAsyncTaskPool, or it may be blocked on the current thread. - A Bevy
SystemParamto execute many similarAsyncTasks in the background simultaneously. - A Bevy
SystemParamto executeAsyncTasks individually in the background. - An error returned when a future times out.
Enums§
- A poll status for an
AsyncTask.