made-core 0.7.3

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

/// One payload-free signal source for newly appended ceremony events.
#[async_trait]
pub trait CeremonyProgressSubscriptionPort: Send {
    /// Wait until the local append generation changes.
    async fn wait(&mut self);
}