dx-forge 0.1.3

Production-ready VCS and orchestration engine for DX tools with Git-like versioning, dual-watcher architecture, traffic branch system, and component injection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod clock;
pub mod messages;
pub mod protocol;
pub mod remote;

pub use clock::GLOBAL_CLOCK;
pub use messages::SyncMessage;
pub use protocol::SyncManager;

// Real-time sync protocol: in-process broadcast-based sync manager
// Provides a publish/subscribe channel for Operations so the watcher
// and other components can broadcast live operations to subscribers
// (e.g. WebSocket handlers or other peers).