rusteron_archive

Trait AeronErrorHandlerCallback

Source
pub trait AeronErrorHandlerCallback {
    // Required method
    fn handle_aeron_error_handler(
        &mut self,
        errcode: c_int,
        message: &'static str,
    );
}
Expand description

The error handler to be called when an error occurs.

(note you must copy any arguments that you use afterwards even those with static lifetimes)

Required Methods§

Source

fn handle_aeron_error_handler(&mut self, errcode: c_int, message: &'static str)

Implementors§