actr-hyper 0.3.1

Hyper — Actor platform infrastructure: sandbox, transport, scheduler, WASM engine, signing, AIS bootstrap, persistence & crypto primitives
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! WebSocket subsystem
//!
//! WebSocket Connection implementation

pub(crate) mod connection;
pub(crate) mod gate;
pub(crate) mod server;

pub(crate) use connection::WebSocketConnection;
pub(crate) use gate::WebSocketGate;
pub(crate) use server::WebSocketServer;