Trait QueueNotifier

Source
pub trait QueueNotifier: Send + Sync {
    // Required method
    fn notify(&self) -> Result<(), Error>;
}
Expand description

A trait for types that can be used to submit available buffer notifications to a queue.

Required Methods§

Source

fn notify(&self) -> Result<(), Error>

Trigger an available buffer notification.

Implementors§