atomr-core 0.3.1

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 / `IO.Udp`
//! but exposed as simple functions returning `tokio::net` primitives wrapped
//! in channel-driven actors.

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

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