tcb 0.1.202

A middleware service for delivering messages in a causal order.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**

 * Transport layer of the middleware service.
 */
pub mod communication;
/**

 * API and necessary state for the client to communicate with the middleware.
 */
pub mod graph;
/**

 * Middleware that ensures causal delivery.
 */
pub mod middleware;
/**

 * Common structs of the middleware service.
 */
pub mod structs;