use super::{EventConsumer, PersonEvent};
use crate::Result;
pub struct FluvioConsumer {
}
impl EventConsumer for FluvioConsumer {
fn subscribe(&mut self) -> Result<()> {
todo!("Implement Fluvio subscription")
}
fn next_event(&mut self) -> Result<Option<PersonEvent>> {
todo!("Implement event consumption")
}
}