rakka-core 0.2.0

rakka core — actor system, dispatchers, mailboxes, scheduler, routing, IO.
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};