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
//! Network IO — small TCP/UDP helpers mirroring akka.net's `IO.Tcp` / `IO.Udp`
//! but exposed as simple functions returning `tokio::net` primitives wrapped
//! in channel-driven actors. akka.net: `src/core/Akka/IO`.

pub mod manager;
pub mod tcp;
pub mod udp;

pub use manager::{ConnId, IoEvent, TcpCommand, TcpManager, UdpCommand, UdpManager};