Skip to main content

BatchNotifier

Trait BatchNotifier 

Source
pub trait BatchNotifier:
    Send
    + Sync
    + Debug {
    // Required method
    fn on_ack(&self);
}
Expand description

A trait implemented by sources to receive acknowledgement notifications.

Required Methods§

Source

fn on_ack(&self)

Called when the batch associated with this notifier has been fully processed.

Implementors§