made-core 0.7.3

Domain core of MADE: entities, value objects, events, ports. No IO.
Documentation
1
2
3
4
5
6
7
use super::CeremonyProgressSubscriptionPort;

/// Creates process-local append wake subscriptions.
pub trait CeremonyProgressNotifierPort: Send + Sync {
    /// Subscribe before reading the store so an append cannot hide in that race.
    fn subscribe(&self) -> Box<dyn CeremonyProgressSubscriptionPort>;
}