tcb 0.1.202

A middleware service for delivering messages in a causal order.
Documentation
/**

 * Thread for accepting connections from another peer.
 */
pub mod acceptor;
/**

 * Connects to another peer's acceptor thread.
 */
pub mod connector;
/**

 * Initial handshake process between peers.
 */
pub mod handshake;
/**

 * Reads messages sent from another peer.
 */
pub mod reader;
/**

 * Sends messages to another peer.
 */
pub mod sender;