polybox-core 0.0.2

Message-passing abstractions to make working with channels and actors a more seamless experience
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The core library for the `polybox` crate.
//!
//! See [GitHub](https://github.com/jvdwrf/polybox) for more information.

pub mod errors;
mod inbox;
mod interface;
mod message;
pub mod oneshot;
mod payload;
mod sends;

pub use polybox_codegen::{Interface, Message};
pub use type_sets;
pub use {inbox::*, interface::*, message::*, payload::*, sends::*};

pub(crate) use {errors::*, oneshot::*, type_sets::*};