Skip to main content

CeremonyProgressNotifierPort

Trait CeremonyProgressNotifierPort 

Source
pub trait CeremonyProgressNotifierPort: Send + Sync {
    // Required method
    fn subscribe(&self) -> Box<dyn CeremonyProgressSubscriptionPort>;
}
Expand description

Creates process-local append wake subscriptions.

Required Methods§

Source

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".

Implementors§