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
15
pub mod elastic;
mod health;
pub mod recovery;
mod seed;
pub mod sparse;
mod topology;
mod worker;

pub use elastic::{ElasticBootstrap, ElasticConfig, ElasticEvent, ElasticManager};
pub use health::HealthMonitor;
pub use recovery::{RecoveryEvent, RecoveryOrchestrator, RecoveryPolicy};
pub use seed::{FormClusterResult, PendingJoin, SeedNode};
pub use sparse::{RoutingTable, SpanningTree, TopologyStrategy};
pub use topology::ClusterMap;
pub use worker::WorkerNode;