Spawned runtime
Runtime abstraction layer for the spawned actor framework.
Wraps tokio and provides unified APIs for both async (tasks) and blocking (threads) execution modes. Includes runtime initialization, spawning, cancellation tokens, channels, and signal handling.
Modules
tasks— Tokio-based async runtime:spawn,sleep,timeout,CancellationToken,mpsc,oneshot,watch,ctrl_cthreads— OS thread-based runtime:spawn,sleep,CancellationToken,mpsc,oneshot,ctrl_c
Usage
Users typically don't interact with this crate directly beyond rt::run() and rt::block_on(). The spawned-concurrency crate builds on top of it.
use tasks as rt;