pub trait Health: Send + Sync + 'static {
    type WatchStream: Stream<Item = Result<HealthCheckResponse, Status>> + Send + 'static;

    // Required methods
    fn check<'life0, 'async_trait>(
        &'life0 self,
        request: Request<HealthCheckRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<HealthCheckResponse>, Status>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn watch<'life0, 'async_trait>(
        &'life0 self,
        request: Request<HealthCheckRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<Self::WatchStream>, Status>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Generated trait containing gRPC methods that should be implemented for use with HealthServer.

Required Associated Types§

source

type WatchStream: Stream<Item = Result<HealthCheckResponse, Status>> + Send + 'static

Server streaming response type for the Watch method.

Required Methods§

source

fn check<'life0, 'async_trait>( &'life0 self, request: Request<HealthCheckRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<HealthCheckResponse>, Status>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn watch<'life0, 'async_trait>( &'life0 self, request: Request<HealthCheckRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<Self::WatchStream>, Status>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementors§