swindon 0.5.2

An HTTP edge (frontend) server with smart websockets support
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use futures::sync::mpsc::UnboundedSender;
use tk_http::websocket::Packet;

mod action;
mod session;
mod spawn;
mod server;
mod client;

pub use self::action::{ReplAction, RemoteAction};
pub use self::session::ReplicationSession;
pub use self::session::{RemoteSender, RemotePool};

pub type IncomingChannel = UnboundedSender<ReplAction>;
pub type OutgoingChannel = UnboundedSender<Packet>;