d-engine-server 0.2.3

Production-ready Raft consensus engine server and runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod grpc;

mod connection_cache;
mod health_checker;
mod health_monitor;

pub(crate) use connection_cache::*;
pub(crate) use health_checker::*;
pub(crate) use health_monitor::*;

#[cfg(test)]
mod connection_cache_test;
#[cfg(test)]
mod health_checker_test;
#[cfg(test)]
mod health_monitor_test;