log_store::kafka::consumer

Trait FetchClient

Source
pub trait FetchClient:
    Debug
    + Send
    + Sync {
    // Required method
    fn fetch_records<'life0, 'async_trait>(
        &'life0 self,
        offset: i64,
        bytes: Range<i32>,
        max_wait_ms: i32,
    ) -> Pin<Box<dyn Future<Output = Result<(Vec<RecordAndOffset>, i64)>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn fetch_records<'life0, 'async_trait>( &'life0 self, offset: i64, bytes: Range<i32>, max_wait_ms: i32, ) -> Pin<Box<dyn Future<Output = Result<(Vec<RecordAndOffset>, i64)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Fetch records.

Arguments are identical to [PartitionClient::fetch_records].

Implementations on Foreign Types§

Source§

impl FetchClient for PartitionClient

Source§

fn fetch_records<'life0, 'async_trait>( &'life0 self, offset: i64, bytes: Range<i32>, max_wait_ms: i32, ) -> Pin<Box<dyn Future<Output = Result<(Vec<RecordAndOffset>, i64)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§