adm_task_service.pb.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: adm_task_service.proto
  3. // package声明符,用来防止不同的消息类型有命名冲突
  4. package pb
  5. import (
  6. v1 "adm-management/pb/v1"
  7. context "context"
  8. fmt "fmt"
  9. proto "github.com/golang/protobuf/proto"
  10. grpc "google.golang.org/grpc"
  11. codes "google.golang.org/grpc/codes"
  12. status "google.golang.org/grpc/status"
  13. math "math"
  14. )
  15. // Reference imports to suppress errors if they are not otherwise used.
  16. var _ = proto.Marshal
  17. var _ = fmt.Errorf
  18. var _ = math.Inf
  19. // This is a compile-time assertion to ensure that this generated file
  20. // is compatible with the proto package it is being compiled against.
  21. // A compilation error at this line likely means your copy of the
  22. // proto package needs to be updated.
  23. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  24. func init() {
  25. proto.RegisterFile("adm_task_service.proto", fileDescriptor_b888879dea74b804)
  26. }
  27. var fileDescriptor_b888879dea74b804 = []byte{
  28. // 140 bytes of a gzipped FileDescriptorProto
  29. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4b, 0x4c, 0xc9, 0x8d,
  30. 0x2f, 0x49, 0x2c, 0xce, 0x8e, 0x2f, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28, 0xca,
  31. 0x2f, 0xc9, 0x17, 0xe2, 0x2a, 0x48, 0xd2, 0x83, 0x8a, 0x48, 0xf1, 0x95, 0x19, 0xea, 0x67, 0xa4,
  32. 0xe6, 0xe4, 0xe4, 0x43, 0xe4, 0x8c, 0xac, 0xb9, 0xd8, 0xdd, 0x8b, 0x52, 0x53, 0x4b, 0x52, 0x8b,
  33. 0x84, 0x0c, 0xb8, 0xb8, 0x82, 0x13, 0x2b, 0x3d, 0x40, 0x92, 0x61, 0x86, 0x42, 0x02, 0x7a, 0x65,
  34. 0x86, 0x7a, 0x60, 0x4e, 0x50, 0x6a, 0x61, 0x69, 0x6a, 0x71, 0x89, 0x14, 0x1f, 0x92, 0x48, 0x41,
  35. 0x4e, 0xa5, 0x12, 0x83, 0x93, 0x70, 0x94, 0x60, 0x62, 0x4a, 0xae, 0x6e, 0x6e, 0x62, 0x5e, 0x62,
  36. 0x7a, 0x6a, 0x6e, 0x6a, 0x5e, 0x89, 0x7e, 0x41, 0x52, 0x12, 0x1b, 0xd8, 0x60, 0x63, 0x40, 0x00,
  37. 0x00, 0x00, 0xff, 0xff, 0x5c, 0x50, 0x83, 0x14, 0x8e, 0x00, 0x00, 0x00,
  38. }
  39. // Reference imports to suppress errors if they are not otherwise used.
  40. var _ context.Context
  41. var _ grpc.ClientConnInterface
  42. // This is a compile-time assertion to ensure that this generated file
  43. // is compatible with the grpc package it is being compiled against.
  44. const _ = grpc.SupportPackageIsVersion6
  45. // GreeterClient is the client API for Greeter service.
  46. //
  47. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  48. type GreeterClient interface {
  49. // Sends a greeting
  50. SayHelloV1(ctx context.Context, in *v1.HelloRequest, opts ...grpc.CallOption) (*v1.HelloReply, error)
  51. }
  52. type greeterClient struct {
  53. cc grpc.ClientConnInterface
  54. }
  55. func NewGreeterClient(cc grpc.ClientConnInterface) GreeterClient {
  56. return &greeterClient{cc}
  57. }
  58. func (c *greeterClient) SayHelloV1(ctx context.Context, in *v1.HelloRequest, opts ...grpc.CallOption) (*v1.HelloReply, error) {
  59. out := new(v1.HelloReply)
  60. err := c.cc.Invoke(ctx, "/pb.service.Greeter/SayHelloV1", in, out, opts...)
  61. if err != nil {
  62. return nil, err
  63. }
  64. return out, nil
  65. }
  66. // GreeterServer is the server API for Greeter service.
  67. type GreeterServer interface {
  68. // Sends a greeting
  69. SayHelloV1(context.Context, *v1.HelloRequest) (*v1.HelloReply, error)
  70. }
  71. // UnimplementedGreeterServer can be embedded to have forward compatible implementations.
  72. type UnimplementedGreeterServer struct {
  73. }
  74. func (*UnimplementedGreeterServer) SayHelloV1(ctx context.Context, req *v1.HelloRequest) (*v1.HelloReply, error) {
  75. return nil, status.Errorf(codes.Unimplemented, "method SayHelloV1 not implemented")
  76. }
  77. func RegisterGreeterServer(s *grpc.Server, srv GreeterServer) {
  78. s.RegisterService(&_Greeter_serviceDesc, srv)
  79. }
  80. func _Greeter_SayHelloV1_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  81. in := new(v1.HelloRequest)
  82. if err := dec(in); err != nil {
  83. return nil, err
  84. }
  85. if interceptor == nil {
  86. return srv.(GreeterServer).SayHelloV1(ctx, in)
  87. }
  88. info := &grpc.UnaryServerInfo{
  89. Server: srv,
  90. FullMethod: "/pb.service.Greeter/SayHelloV1",
  91. }
  92. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  93. return srv.(GreeterServer).SayHelloV1(ctx, req.(*v1.HelloRequest))
  94. }
  95. return interceptor(ctx, in, info, handler)
  96. }
  97. var _Greeter_serviceDesc = grpc.ServiceDesc{
  98. ServiceName: "pb.service.Greeter",
  99. HandlerType: (*GreeterServer)(nil),
  100. Methods: []grpc.MethodDesc{
  101. {
  102. MethodName: "SayHelloV1",
  103. Handler: _Greeter_SayHelloV1_Handler,
  104. },
  105. },
  106. Streams: []grpc.StreamDesc{},
  107. Metadata: "adm_task_service.proto",
  108. }