pub(crate) trait TopicSelector: Send + Sync { // Required method fn select<'a>(&self, topic_pool: &'a [String]) -> Result<&'a String>; }
Controls topic selection.
Selects a topic from the topic pool.