atomr-core 0.1.0

Actors, supervision, dispatch, mailboxes, scheduler, FSM, event stream, and coordinated shutdown — the core of the atomr actor runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Dispatcher + mailbox subsystem. akka.net: `src/core/Akka/Dispatch`.

pub mod dispatcher;
pub mod mailbox;
pub mod message_queues;

pub use dispatcher::{
    CallingThreadDispatcher, DefaultDispatcher, Dispatcher, DispatcherHandle, PinnedDispatcher,
    ThreadPoolDispatcher,
};
pub use mailbox::{Mailbox, MailboxConfig, MailboxKind};