pub trait NotificationSyncHandler {
    fn handle_enqueue(&self, message: String) -> Result<bool>;
}

Required Methods

Implementors