pub trait CeremonyProgressNotifierPort: Send + Sync {
// Required method
fn subscribe(&self) -> Box<dyn CeremonyProgressSubscriptionPort>;
}Expand description
Creates process-local append wake subscriptions.
Required Methods§
Sourcefn subscribe(&self) -> Box<dyn CeremonyProgressSubscriptionPort>
fn subscribe(&self) -> Box<dyn CeremonyProgressSubscriptionPort>
Subscribe before reading the store so an append cannot hide in that race.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".