pub trait AeronUnavailableCounterCallback {
// Required method
fn handle_aeron_on_unavailable_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 removed from 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.