pub trait TopicStatsReporter: Send + Sync {
// Required method
fn reportable_topics(&mut self) -> Vec<TopicStat>;
}
Expand description
Trait for reporting statistics about topics.
Required Methods§
Sourcefn reportable_topics(&mut self) -> Vec<TopicStat>
fn reportable_topics(&mut self) -> Vec<TopicStat>
Returns a list of topic statistics that can be reported.