pub trait AeronErrorLogReaderFuncCallback {
    // Required method
    fn handle_aeron_error_log_reader_func(
        &mut self,
        observation_count: i32,
        first_observation_timestamp: i64,
        last_observation_timestamp: i64,
        error: &str,
    );
}

Required Methods§

source

fn handle_aeron_error_log_reader_func( &mut self, observation_count: i32, first_observation_timestamp: i64, last_observation_timestamp: i64, error: &str, )

Implementors§