made_core/ports/ceremony_progress_notifier.rs
1use super::CeremonyProgressSubscriptionPort;
2
3/// Creates process-local append wake subscriptions.
4pub trait CeremonyProgressNotifierPort: Send + Sync {
5 /// Subscribe before reading the store so an append cannot hide in that race.
6 fn subscribe(&self) -> Box<dyn CeremonyProgressSubscriptionPort>;
7}