[][src]Trait fluvio_controlplane_metadata::spu::store::SpuLocalStorePolicy

pub trait SpuLocalStorePolicy<C> where
    C: MetadataItem
{ #[must_use] pub fn online_status<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = HashSet<SpuId>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn online_spu_count<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = i32> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn spu_used_for_replica<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = i32> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn online_spu_ids<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Vec<i32>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn spu_ids<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Vec<i32>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn online_spus<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Vec<SpuMetadata<C>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn custom_spus<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Vec<SpuMetadata<C>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn get_by_id<'life0, 'async_trait>(
        &'life0 self,
        id: i32
    ) -> Pin<Box<dyn Future<Output = Option<SpuMetadata<C>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn validate_spu_for_registered<'life0, 'async_trait>(
        &'life0 self,
        id: SpuId
    ) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn all_names<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Vec<String>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn table_fmt<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = String> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn spus_in_rack_count<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = i32> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn live_spu_rack_map_sorted<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Vec<(String, Vec<i32>)>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn online_spu_rack_map<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = BTreeMap<String, Vec<i32>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
pub fn online_spus_in_rack(rack_map: &[(String, Vec<i32>)]) -> Vec<i32>;
#[must_use] pub fn all_spus_to_spu_msgs<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Vec<SpuMsg>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
pub fn quick(spus: Vec<(i32, bool, Option<String>)>) -> Self; }

Required methods

#[must_use]pub fn online_status<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = HashSet<SpuId>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn online_spu_count<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = i32> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn spu_used_for_replica<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = i32> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn online_spu_ids<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Vec<i32>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn spu_ids<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Vec<i32>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn online_spus<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Vec<SpuMetadata<C>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn custom_spus<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Vec<SpuMetadata<C>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn get_by_id<'life0, 'async_trait>(
    &'life0 self,
    id: i32
) -> Pin<Box<dyn Future<Output = Option<SpuMetadata<C>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn validate_spu_for_registered<'life0, 'async_trait>(
    &'life0 self,
    id: SpuId
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn all_names<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Vec<String>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn table_fmt<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = String> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn spus_in_rack_count<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = i32> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn live_spu_rack_map_sorted<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Vec<(String, Vec<i32>)>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]pub fn online_spu_rack_map<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = BTreeMap<String, Vec<i32>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

pub fn online_spus_in_rack(rack_map: &[(String, Vec<i32>)]) -> Vec<i32>[src]

#[must_use]pub fn all_spus_to_spu_msgs<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Vec<SpuMsg>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

pub fn quick(spus: Vec<(i32, bool, Option<String>)>) -> Self[src]

Loading content...

Implementors

impl<C> SpuLocalStorePolicy<C> for SpuLocalStore<C> where
    C: MetadataItem + Send + Sync
[src]

pub fn online_spu_count<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = i32> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

count online SPUs

pub fn spu_used_for_replica<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = i32> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

count spus that can be used for replica

pub fn spus_in_rack_count<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = i32> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

number of spus in rack count

Loading content...