openraft 0.9.24

Advanced Raft consensus
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! The Raft network interface.

mod backoff;
mod factory;
#[allow(clippy::module_inception)]
mod network;
mod rpc_option;
mod rpc_type;

pub mod snapshot_transport;

pub use backoff::Backoff;
pub use factory::RaftNetworkFactory;
pub use network::RaftNetwork;
pub use rpc_option::RPCOption;
pub use rpc_type::RPCTypes;