Skip to main content

SinkWriteErrorHandler

Trait SinkWriteErrorHandler 

Source
pub trait SinkWriteErrorHandler: Send + 'static {
    // Required method
    fn handle(&mut self, error: &SinkWriteError) -> SinkWriteErrorAction;
}
Expand description

Handles async writer sink failures observed by writer collectors.

Required Methods§

Source

fn handle(&mut self, error: &SinkWriteError) -> SinkWriteErrorAction

Decide whether collection should continue after a sink write failure.

Implementors§