| // Code generated by protoc-gen-go-grpc. DO NOT EDIT. |
| // versions: |
| // - protoc-gen-go-grpc v1.6.0 |
| // - protoc v4.25.8 |
| // source: voltha_protos/health.proto |
| |
| package health |
| |
| import ( |
| context "context" |
| grpc "google.golang.org/grpc" |
| codes "google.golang.org/grpc/codes" |
| status "google.golang.org/grpc/status" |
| emptypb "google.golang.org/protobuf/types/known/emptypb" |
| ) |
| |
| // This is a compile-time assertion to ensure that this generated file |
| // is compatible with the grpc package it is being compiled against. |
| // Requires gRPC-Go v1.64.0 or later. |
| const _ = grpc.SupportPackageIsVersion9 |
| |
| const ( |
| HealthService_GetHealthStatus_FullMethodName = "/health.HealthService/GetHealthStatus" |
| ) |
| |
| // HealthServiceClient is the client API for HealthService 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. |
| // |
| // Health related services |
| type HealthServiceClient interface { |
| // Return current health status of a Voltha instance |
| GetHealthStatus(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*HealthStatus, error) |
| } |
| |
| type healthServiceClient struct { |
| cc grpc.ClientConnInterface |
| } |
| |
| func NewHealthServiceClient(cc grpc.ClientConnInterface) HealthServiceClient { |
| return &healthServiceClient{cc} |
| } |
| |
| func (c *healthServiceClient) GetHealthStatus(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*HealthStatus, error) { |
| cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) |
| out := new(HealthStatus) |
| err := c.cc.Invoke(ctx, HealthService_GetHealthStatus_FullMethodName, in, out, cOpts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| // HealthServiceServer is the server API for HealthService service. |
| // All implementations must embed UnimplementedHealthServiceServer |
| // for forward compatibility. |
| // |
| // Health related services |
| type HealthServiceServer interface { |
| // Return current health status of a Voltha instance |
| GetHealthStatus(context.Context, *emptypb.Empty) (*HealthStatus, error) |
| mustEmbedUnimplementedHealthServiceServer() |
| } |
| |
| // UnimplementedHealthServiceServer must be embedded to have |
| // forward compatible implementations. |
| // |
| // NOTE: this should be embedded by value instead of pointer to avoid a nil |
| // pointer dereference when methods are called. |
| type UnimplementedHealthServiceServer struct{} |
| |
| func (UnimplementedHealthServiceServer) GetHealthStatus(context.Context, *emptypb.Empty) (*HealthStatus, error) { |
| return nil, status.Error(codes.Unimplemented, "method GetHealthStatus not implemented") |
| } |
| func (UnimplementedHealthServiceServer) mustEmbedUnimplementedHealthServiceServer() {} |
| func (UnimplementedHealthServiceServer) testEmbeddedByValue() {} |
| |
| // UnsafeHealthServiceServer may be embedded to opt out of forward compatibility for this service. |
| // Use of this interface is not recommended, as added methods to HealthServiceServer will |
| // result in compilation errors. |
| type UnsafeHealthServiceServer interface { |
| mustEmbedUnimplementedHealthServiceServer() |
| } |
| |
| func RegisterHealthServiceServer(s grpc.ServiceRegistrar, srv HealthServiceServer) { |
| // If the following call panics, it indicates UnimplementedHealthServiceServer was |
| // embedded by pointer and is nil. This will cause panics if an |
| // unimplemented method is ever invoked, so we test this at initialization |
| // time to prevent it from happening at runtime later due to I/O. |
| if t, ok := srv.(interface{ testEmbeddedByValue() }); ok { |
| t.testEmbeddedByValue() |
| } |
| s.RegisterService(&HealthService_ServiceDesc, srv) |
| } |
| |
| func _HealthService_GetHealthStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
| in := new(emptypb.Empty) |
| if err := dec(in); err != nil { |
| return nil, err |
| } |
| if interceptor == nil { |
| return srv.(HealthServiceServer).GetHealthStatus(ctx, in) |
| } |
| info := &grpc.UnaryServerInfo{ |
| Server: srv, |
| FullMethod: HealthService_GetHealthStatus_FullMethodName, |
| } |
| handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
| return srv.(HealthServiceServer).GetHealthStatus(ctx, req.(*emptypb.Empty)) |
| } |
| return interceptor(ctx, in, info, handler) |
| } |
| |
| // HealthService_ServiceDesc is the grpc.ServiceDesc for HealthService service. |
| // It's only intended for direct use with grpc.RegisterService, |
| // and not to be introspected or modified (even as a copy) |
| var HealthService_ServiceDesc = grpc.ServiceDesc{ |
| ServiceName: "health.HealthService", |
| HandlerType: (*HealthServiceServer)(nil), |
| Methods: []grpc.MethodDesc{ |
| { |
| MethodName: "GetHealthStatus", |
| Handler: _HealthService_GetHealthStatus_Handler, |
| }, |
| }, |
| Streams: []grpc.StreamDesc{}, |
| Metadata: "voltha_protos/health.proto", |
| } |