log_store::kafka::producerTrait ProducerClient
Source pub trait ProducerClient:
Debug
+ Send
+ Sync {
// Required methods
fn produce<'life0, 'async_trait>(
&'life0 self,
records: Vec<Record>,
compression: Compression,
) -> Pin<Box<dyn Future<Output = Result<Vec<i64>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_offset<'life0, 'async_trait>(
&'life0 self,
at: OffsetAt,
) -> Pin<Box<dyn Future<Output = Result<i64>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}