| // Code generated by protoc-gen-go-grpc. DO NOT EDIT. |
| |
| package grpc_health_v1 |
| |
| import ( |
| context "context" |
| grpc "google.golang.org/grpc" |
| codes "google.golang.org/grpc/codes" |
| status "google.golang.org/grpc/status" |
| ) |
| |
| // This is a compile-time assertion to ensure that this generated file |
| // is compatible with the grpc package it is being compiled against. |
| const _ = grpc.SupportPackageIsVersion7 |
| |
| // HealthClient is the client API for Health service. |
| // |
| // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. |
| type HealthClient interface { |
| // If the requested service is unknown, the call will fail with status |
| // NOT_FOUND. |
| Check(ctx context.Context, in *HealthCheckRequest, opts ...grpc.CallOption) (*HealthCheckResponse, error) |
| // Performs a watch for the serving status of the requested service. |
| // The server will immediately send back a message indicating the current |
| // serving status. It will then subsequently send a new message whenever |
| // the service's serving status changes. |
| // |
| // If the requested service is unknown when the call is received, the |
| // server will send a message setting the serving status to |
| // SERVICE_UNKNOWN but will *not* terminate the call. If at some |
| // future point, the serving status of the service becomes known, the |
| // server will send a new message with the service's serving status. |
| // |
| // If the call terminates with status UNIMPLEMENTED, then clients |
| // should assume this method is not supported and should not retry the |
| // call. If the call terminates with any other status (including OK), |
| // clients should retry the call with appropriate exponential backoff. |
| Watch(ctx context.Context, in *HealthCheckRequest, opts ...grpc.CallOption) (Health_WatchClient, error) |
| } |
| |
| type healthClient struct { |
| cc grpc.ClientConnInterface |
| } |
| |
| func NewHealthClient(cc grpc.ClientConnInterface) HealthClient { |
| return &healthClient{cc} |
| } |
| |
| func (c *healthClient) Check(ctx context.Context, in *HealthCheckRequest, opts ...grpc.CallOption) (*HealthCheckResponse, error) { |
| out := new(HealthCheckResponse) |
| err := c.cc.Invoke(ctx, "/grpc.health.v1.Health/Check", in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| func (c *healthClient) Watch(ctx context.Context, in *HealthCheckRequest, opts ...grpc.CallOption) (Health_WatchClient, error) { |
| stream, err := c.cc.NewStream(ctx, &_Health_serviceDesc.Streams[0], "/grpc.health.v1.Health/Watch", opts...) |
| if err != nil { |
| return nil, err |
| } |
| x := &healthWatchClient{stream} |
| if err := x.ClientStream.SendMsg(in); err != nil { |
| return nil, err |
| } |
| if err := x.ClientStream.CloseSend(); err != nil { |
| return nil, err |
| } |
| return x, nil |
| } |
| |
| type Health_WatchClient interface { |
| Recv() (*HealthCheckResponse, error) |
| grpc.ClientStream |
| } |
| |
| type healthWatchClient struct { |
| grpc.ClientStream |
| } |
| |
| func (x *healthWatchClient) Recv() (*HealthCheckResponse, error) { |
| m := new(HealthCheckResponse) |
| if err := x.ClientStream.RecvMsg(m); err != nil { |
| return nil, err |
| } |
| return m, nil |
| } |
| |
| // HealthServer is the server API for Health service. |
| // All implementations should embed UnimplementedHealthServer |
| // for forward compatibility |
| type HealthServer interface { |
| // If the requested service is unknown, the call will fail with status |
| // NOT_FOUND. |
| Check(context.Context, *HealthCheckRequest) (*HealthCheckResponse, error) |
| // Performs a watch for the serving status of the requested service. |
| // The server will immediately send back a message indicating the current |
| // serving status. It will then subsequently send a new message whenever |
| // the service's serving status changes. |
| // |
| // If the requested service is unknown when the call is received, the |
| // server will send a message setting the serving status to |
| // SERVICE_UNKNOWN but will *not* terminate the call. If at some |
| // future point, the serving status of the service becomes known, the |
| // server will send a new message with the service's serving status. |
| // |
| // If the call terminates with status UNIMPLEMENTED, then clients |
| // should assume this method is not supported and should not retry the |
| // call. If the call terminates with any other status (including OK), |
| // clients should retry the call with appropriate exponential backoff. |
| Watch(*HealthCheckRequest, Health_WatchServer) error |
| } |
| |
| // UnimplementedHealthServer should be embedded to have forward compatible implementations. |
| type UnimplementedHealthServer struct { |
| } |
| |
| func (UnimplementedHealthServer) Check(context.Context, *HealthCheckRequest) (*HealthCheckResponse, error) { |
| return nil, status.Errorf(codes.Unimplemented, "method Check not implemented") |
| } |
| func (UnimplementedHealthServer) Watch(*HealthCheckRequest, Health_WatchServer) error { |
| return status.Errorf(codes.Unimplemented, "method Watch not implemented") |
| } |
| |
| // UnsafeHealthServer may be embedded to opt out of forward compatibility for this service. |
| // Use of this interface is not recommended, as added methods to HealthServer will |
| // result in compilation errors. |
| type UnsafeHealthServer interface { |
| mustEmbedUnimplementedHealthServer() |
| } |
| |
| func RegisterHealthServer(s grpc.ServiceRegistrar, srv HealthServer) { |
| s.RegisterService(&_Health_serviceDesc, srv) |
| } |
| |
| func _Health_Check_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
| in := new(HealthCheckRequest) |
| if err := dec(in); err != nil { |
| return nil, err |
| } |
| if interceptor == nil { |
| return srv.(HealthServer).Check(ctx, in) |
| } |
| info := &grpc.UnaryServerInfo{ |
| Server: srv, |
| FullMethod: "/grpc.health.v1.Health/Check", |
| } |
| handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
| return srv.(HealthServer).Check(ctx, req.(*HealthCheckRequest)) |
| } |
| return interceptor(ctx, in, info, handler) |
| } |
| |
| func _Health_Watch_Handler(srv interface{}, stream grpc.ServerStream) error { |
| m := new(HealthCheckRequest) |
| if err := stream.RecvMsg(m); err != nil { |
| return err |
| } |
| return srv.(HealthServer).Watch(m, &healthWatchServer{stream}) |
| } |
| |
| type Health_WatchServer interface { |
| Send(*HealthCheckResponse) error |
| grpc.ServerStream |
| } |
| |
| type healthWatchServer struct { |
| grpc.ServerStream |
| } |
| |
| func (x *healthWatchServer) Send(m *HealthCheckResponse) error { |
| return x.ServerStream.SendMsg(m) |
| } |
| |
| var _Health_serviceDesc = grpc.ServiceDesc{ |
| ServiceName: "grpc.health.v1.Health", |
| HandlerType: (*HealthServer)(nil), |
| Methods: []grpc.MethodDesc{ |
| { |
| MethodName: "Check", |
| Handler: _Health_Check_Handler, |
| }, |
| }, |
| Streams: []grpc.StreamDesc{ |
| { |
| StreamName: "Watch", |
| Handler: _Health_Watch_Handler, |
| ServerStreams: true, |
| }, |
| }, |
| Metadata: "grpc/health/v1/health.proto", |
| } |