black-box 0.3.1

A minimal actor framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]

mod actors;
pub mod error;
mod executor;
mod futures;
pub(crate) mod message;
mod mailbox;

pub use self::{
    actors::{Actor, Address, Handler, WeakAddress},
    executor::{Context, Executor, ShutdownHandle},
    mailbox::Mailbox,
};