atap 0.1.0

Threadsafe futureless async runtime for macOS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Builder
//! The chain every task is started through, and the type level
//! states it moves between

pub mod builder_markers;
pub mod runtime_builder;
pub mod task_builder;

pub use builder_markers::{
    NoWait, Once, Open, Rate, ReceiveAll, ReceiveAny, Repeat, Repeatable, Set, Unset, WaitFor,
    Waits, Wiring,
};
pub use runtime_builder::RuntimeBuilder;
pub use task_builder::TaskBuilder;