log_store::kafka::producer

Trait 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;
}

Required Methods§

Source

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,

Source

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,

Implementations on Foreign Types§

Source§

impl ProducerClient for PartitionClient

Source§

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,

Source§

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,

Implementors§