Skip to main content

ormdb_server/pubsub/
mod.rs

1//! Pub-sub infrastructure for change notifications.
2//!
3//! This module provides the infrastructure for subscribing to and publishing
4//! change events. Full change data capture (CDC) will be implemented in Phase 6.
5
6mod manager;
7mod subscription;
8
9pub use manager::PubSubManager;
10pub use subscription::{SubscriptionEntry, SubscriptionFilter};