edgestore-repl 1.0.0

REPL and HTTP server for EdgeStore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `edgestore-repl` — HTTP transport layer and pull-only anti-entropy loop.
//!
//! Provides:
//! - `HttpReplicationClient` — implements `ReplicationProtocol` over HTTP + MessagePack (D07)
//! - `HttpReplicationServer` — serves 3 pull-only endpoints with `?debug=json` support (D07)
//! - `AntiEntropyLoop`       — background thread for pull-only sync with per-peer cursor (D08)

pub mod anti_entropy;
pub mod filesystem_remote_store;
pub mod http_client;
pub mod http_server;

pub use anti_entropy::{AntiEntropyLoop, PeerCursor};
pub use filesystem_remote_store::FilesystemRemoteStore;
pub use http_client::HttpReplicationClient;
pub use http_server::HttpReplicationServer;