Skip to main contentCrate edge_executor
Source - BoundQueue
- A fixed-capacity queue implementation using
heapless::Deque. - Executor
- An async executor.
- FallibleTask
- A spawned task with a fallible response.
- LocalExecutor
- A thread-local executor.
- Task
- A spawned task.
- UnboundQueue
- An unbounded queue implementation using
VecDeque from the alloc crate.
- ExecutorQueue
- A trait abstracting the async executor queue.
The queue MUST be thread-safe (and could be ISR-safe if the executor is used in an embedded context).
- block_on
- Blocks the current thread on a future.