polybox 0.0.1

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
//! Message-passing abstractions to make working with channels and actors a more seamless experience.
//!
//! See [GitHub](https://github.com/jvdwrf/polybox) for more information.

#[cfg(feature = "flume")]
mod flume_inbox;
#[cfg(feature = "flume")]
pub use flume_inbox::FlumeInbox;

#[cfg(feature = "tokio")]
pub use tokio_inbox::TokioInbox;
#[cfg(feature = "tokio")]
mod tokio_inbox;

pub use polybox_codegen::{Interface, Message};
pub use polybox_core::*;