pub trait QueueNotifier: Send + Sync { // Required method fn notify(&self) -> Result<(), Error>; }
A trait for types that can be used to submit available buffer notifications to a queue.
Trigger an available buffer notification.