pub trait AeronAvailableCounterCallback {
    // Required method
    fn handle_aeron_on_available_counter(
        &mut self,
        counters_reader: AeronCountersReader,
        registration_id: i64,
        counter_id: i32,
    );
}
Expand description

Function called by aeron_client_t to deliver notifications that a counter has been added to the driver.

@param clientd to be returned in the call. @param counters_reader that holds the counter. @param registration_id of the counter. @param counter_id of the counter.

Required Methods§

source

fn handle_aeron_on_available_counter( &mut self, counters_reader: AeronCountersReader, registration_id: i64, counter_id: i32, )

Implementors§