PerfManager

Trait PerfManager 

Source
pub trait PerfManager: Send + Sync {
    // Required methods
    fn flush<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_isolate(&self, id: &str) -> PerfIsolateRef;
}

Required Methods§

Source

fn flush<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Source

fn get_isolate(&self, id: &str) -> PerfIsolateRef

Implementors§