GRPC C++
1.26.0
|
The gRPC server uses this interface to expose the health checking service without depending on protobuf. More...
#include <health_check_service_interface_impl.h>
Public Member Functions | |
virtual | ~HealthCheckServiceInterface () |
virtual void | SetServingStatus (const grpc::string &service_name, bool serving)=0 |
Set or change the serving status of the given service_name. More... | |
virtual void | SetServingStatus (bool serving)=0 |
Apply to all registered service names. More... | |
virtual void | Shutdown () |
Set all registered service names to not serving and prevent future state changes. More... | |
The gRPC server uses this interface to expose the health checking service without depending on protobuf.
|
inlinevirtual |
|
pure virtual |
Set or change the serving status of the given service_name.
Implemented in grpc::DefaultHealthCheckService.
|
pure virtual |
Apply to all registered service names.
Implemented in grpc::DefaultHealthCheckService.
|
inlinevirtual |
Set all registered service names to not serving and prevent future state changes.
Reimplemented in grpc::DefaultHealthCheckService.