spawn_groups 1.1.0

Structured concurrency construct written in Rust, for Rustaceans
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub(crate) mod mutex;
pub(crate) mod priority;
pub(crate) mod priority_task;
pub(crate) mod runtime;
mod suspender;
mod task;
mod task_enum;
mod waker;
mod waker_pair;

pub(crate) use suspender::{pair, Suspender};
pub(crate) use task::Task;
pub(crate) use task_enum::TaskOrBarrier;
pub(crate) use waker_pair::{block_on, WAKER_PAIR};