tcb 0.1.202

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

 * Direct Acyclic Graph mapped as an array.
 */
pub mod dag;
/**

 * Pair id, cntr that is tagged to each message before sending.
 */
pub mod dot;
/**

 * Graph based causal delivery algorithm.
 */
pub mod graph;
/**

 * Necessary structs.
 */
pub mod message_types;
/**

 * Middleware thread that handles received and broadcast messages.
 */
pub mod middleware_thread;
/**

 * Message node in the DAG.
 */
pub mod node;