rockraft 0.1.6

A strong consistency KV service library base on Raft and Rocksdb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Network layer — gRPC connection management and pooling.
//!
//! This module provides network connectivity for Raft cluster communication:
//! - Connection management for initial cluster join operations
//! - Connection pooling for inter-node Raft protocol communication
//! - DNS resolution and TLS support

pub(crate) mod connection;
pub(crate) mod pool;

// Re-export commonly used types
pub use connection::JoinConnectionFactory;
pub use pool::ClientPool;