pub trait OffsetStore {
// Required methods
fn commit(&mut self, topic: &str, partition: u32, group: &str, offset: u64);
fn fetch(&self, topic: &str, partition: u32, group: &str) -> Option<u64>;
}Expand description
Trait for persisting consumer offsets.