Trait servers::grpc::region_server::RegionServerHandler

source ·
pub trait RegionServerHandler: Send + Sync {
    // Required method
    fn handle<'life0, 'async_trait>(
        &'life0 self,
        request: Body,
    ) -> Pin<Box<dyn Future<Output = Result<RegionResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn handle<'life0, 'async_trait>( &'life0 self, request: Body, ) -> Pin<Box<dyn Future<Output = Result<RegionResponse>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§