pub trait QueueNotifier {
    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

Trigger an available buffer notification.

Implementors