kwokka 0.1.0

completion-based async runtime with optional orchestration
Documentation
1
2
3
4
5
6
7
8
9
//! Runtime entry points -- scheduler-explicit construction and blocking
//! execution.
//!
//! [`Runtime::affine`] pins a single worker to the calling thread;
//! [`Runtime::stealing`] boots a crew of workers that relocate sleeping
//! tasks toward idle siblings. Both are driven by `block_on`, and custom
//! capacities go through [`RuntimeBuilder`].

pub use kwokka_runtime::{Runtime, RuntimeBuilder};