pacifica-rs 1.0.0

rust implementation of PacificA: Replication in Log-Based Distributed Storage Systems
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::fmt::Debug;

mod codec;
mod replica;
mod router;

pub use self::replica::Replica;

pub trait Request: Debug + Send + Sync + Sized {}

pub trait Response: Debug + Send + Sync + Sized {}

pub use self::codec::Codec;
pub use self::codec::DecodeError;
pub use self::codec::EncodeError;

pub use self::router::ReplicaRouter;