nexar 0.1.2

Distributed runtime with QUIC transport, stream-multiplexed messaging, and built-in collectives
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod buffer_pool;
mod connection;
mod listener;
pub mod relay;
pub mod router;
pub(crate) mod stream_pool;
pub mod tcp_bulk;
pub mod tls;

pub use connection::{BulkTransport, PeerConnection};
pub use listener::TransportListener;
pub use relay::RelayDeliveries;
pub use router::PeerRouter;
pub use tcp_bulk::{TaggedBulkTransport, TcpBulkTransport};