pub trait Synchronizer: Clone {
    fn wait(&self, event: QueueEvent) -> Result<(), SynchronizationError>;
    fn notify(&self, event: QueueEvent);
}

Required Methods

block execution until the specified event happens.

notify all waiters blocked on the specified event for the same Fifo.

Implementors