pub trait GlobalStateOutputProcessor: Sync + Send + 'static {
    fn get_category(&self) -> GlobalStateCategory;
    fn get_current_root<'life0, 'async_trait>(
        &'life0 self,
        req: RootStateGetCurrentRootOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<RootStateGetCurrentRootOutputResponse>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn create_op_env<'life0, 'async_trait>(
        &'life0 self,
        req: RootStateCreateOpEnvOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<OpEnvOutputProcessorRef>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors