dx_forge/sync/mod.rs
1pub mod clock;
2pub mod messages;
3pub mod protocol;
4pub mod remote;
5
6pub use clock::GLOBAL_CLOCK;
7pub use messages::SyncMessage;
8pub use protocol::SyncManager;
9
10// Real-time sync protocol: in-process broadcast-based sync manager
11// Provides a publish/subscribe channel for Operations so the watcher
12// and other components can broadcast live operations to subscribers
13// (e.g. WebSocket handlers or other peers).