[]Trait fluvio::metadata::topic::store::TopicMd

pub trait TopicMd<C> where
    C: MetadataItem
{ #[must_use] fn create_new_partitions<'life0, 'life1, 'async_trait>(
        &'life0 self,
        partition_store: &'life1 LocalStore<PartitionSpec, C>
    ) -> Pin<Box<dyn Future<Output = Vec<MetadataStoreObject<PartitionSpec, C>>> + 'async_trait + Send>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]fn create_new_partitions<'life0, 'life1, 'async_trait>(
    &'life0 self,
    partition_store: &'life1 LocalStore<PartitionSpec, C>
) -> Pin<Box<dyn Future<Output = Vec<MetadataStoreObject<PartitionSpec, C>>> + 'async_trait + Send>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

impl<C> TopicMd<C> for MetadataStoreObject<TopicSpec, C> where
    C: MetadataItem + Send + Sync

fn create_new_partitions<'life0, 'life1, 'async_trait>(
    &'life0 self,
    partition_store: &'life1 LocalStore<PartitionSpec, C>
) -> Pin<Box<dyn Future<Output = Vec<MetadataStoreObject<PartitionSpec, C>>> + 'async_trait + Send>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    MetadataStoreObject<TopicSpec, C>: 'async_trait, 

create new partitions from my replica map if it doesn't exists from partition store

Loading content...