type google.golang.org/grpc/health/grpc_health_v1.HealthCheckResponse_ServingStatus

25 uses

	google.golang.org/grpc/health/grpc_health_v1 (current package)
		health.pb.go#L41: type HealthCheckResponse_ServingStatus int32
		health.pb.go#L44: 	HealthCheckResponse_UNKNOWN         HealthCheckResponse_ServingStatus = 0
		health.pb.go#L45: 	HealthCheckResponse_SERVING         HealthCheckResponse_ServingStatus = 1
		health.pb.go#L46: 	HealthCheckResponse_NOT_SERVING     HealthCheckResponse_ServingStatus = 2
		health.pb.go#L47: 	HealthCheckResponse_SERVICE_UNKNOWN HealthCheckResponse_ServingStatus = 3 // Used only by the Watch method.
		health.pb.go#L66: func (x HealthCheckResponse_ServingStatus) Enum() *HealthCheckResponse_ServingStatus {
		health.pb.go#L67: 	p := new(HealthCheckResponse_ServingStatus)
		health.pb.go#L72: func (x HealthCheckResponse_ServingStatus) String() string {
		health.pb.go#L76: func (HealthCheckResponse_ServingStatus) Descriptor() protoreflect.EnumDescriptor {
		health.pb.go#L80: func (HealthCheckResponse_ServingStatus) Type() protoreflect.EnumType {
		health.pb.go#L84: func (x HealthCheckResponse_ServingStatus) Number() protoreflect.EnumNumber {
		health.pb.go#L89: func (HealthCheckResponse_ServingStatus) EnumDescriptor() ([]byte, []int) {
		health.pb.go#L139: 	Status        HealthCheckResponse_ServingStatus `protobuf:"varint,1,opt,name=status,proto3,enum=grpc.health.v1.HealthCheckResponse_ServingStatus" json:"status,omitempty"`
		health.pb.go#L174: func (x *HealthCheckResponse) GetStatus() HealthCheckResponse_ServingStatus {
		health.pb.go#L303: 	(HealthCheckResponse_ServingStatus)(0), // 0: grpc.health.v1.HealthCheckResponse.ServingStatus

	google.golang.org/grpc/health
		server.go#L48: 	statusMap map[string]healthpb.HealthCheckResponse_ServingStatus
		server.go#L49: 	updates   map[string]map[healthgrpc.Health_WatchServer]chan healthpb.HealthCheckResponse_ServingStatus
		server.go#L55: 		statusMap: map[string]healthpb.HealthCheckResponse_ServingStatus{"": healthpb.HealthCheckResponse_SERVING},
		server.go#L56: 		updates:   make(map[string]map[healthgrpc.Health_WatchServer]chan healthpb.HealthCheckResponse_ServingStatus),
		server.go#L93: 	update := make(chan healthpb.HealthCheckResponse_ServingStatus, 1)
		server.go#L104: 		s.updates[service] = make(map[healthgrpc.Health_WatchServer]chan healthpb.HealthCheckResponse_ServingStatus)
		server.go#L114: 	var lastSentStatus healthpb.HealthCheckResponse_ServingStatus = -1
		server.go#L136: func (s *Server) SetServingStatus(service string, servingStatus healthpb.HealthCheckResponse_ServingStatus) {
		server.go#L147: func (s *Server) setServingStatusLocked(service string, servingStatus healthpb.HealthCheckResponse_ServingStatus) {