Trait TopicStatsReporter

Source
pub trait TopicStatsReporter: Send + Sync {
    // Required method
    fn reportable_topics(&mut self) -> Vec<TopicStat>;
}
Expand description

Trait for reporting statistics about topics.

Required Methods§

Source

fn reportable_topics(&mut self) -> Vec<TopicStat>

Returns a list of topic statistics that can be reported.

Implementors§