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§