rusteron_media_driver

Trait AeronCountersReaderForeachCounterFuncCallback

Source
pub trait AeronCountersReaderForeachCounterFuncCallback {
    // Required method
    fn handle_aeron_counters_reader_foreach_counter_func(
        &mut self,
        value: i64,
        id: i32,
        type_id: i32,
        key: &'static [u8],
        label: &'static str,
    );
}
Expand description

Function called by aeron_counters_reader_foreach_counter for each counter in the aeron_counters_reader_t.

@param value of the counter. @param id of the counter. @param label for the counter. @param label_length for the counter. @param clientd to be returned in the call

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

Required Methods§

Source

fn handle_aeron_counters_reader_foreach_counter_func( &mut self, value: i64, id: i32, type_id: i32, key: &'static [u8], label: &'static str, )

Implementors§