Trait engine_rocks::raw::TablePropertiesCollectorFactory[][src]

pub trait TablePropertiesCollectorFactory {
    pub fn create_table_properties_collector(
        &mut self,
        cf: u32
    ) -> Box<dyn TablePropertiesCollector + 'static, Global>; }

Constructs TablePropertiesCollector. Internals create a new TablePropertiesCollector for each new table.

Required methods

pub fn create_table_properties_collector(
    &mut self,
    cf: u32
) -> Box<dyn TablePropertiesCollector + 'static, Global>
[src]

Has to be thread-safe.

Loading content...

Implementors

impl TablePropertiesCollectorFactory for MvccPropertiesCollectorFactory[src]

impl TablePropertiesCollectorFactory for RangePropertiesCollectorFactory[src]

impl TablePropertiesCollectorFactory for TtlPropertiesCollectorFactory[src]

Loading content...