adm_data.pb.go 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: adm_data.proto
  3. // package声明符,用来防止不同的消息类型有命名冲突
  4. package pb
  5. import (
  6. v1 "adm-data/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_data.proto", fileDescriptor_6b31a6a84b848144)
  26. }
  27. var fileDescriptor_6b31a6a84b848144 = []byte{
  28. // 121 bytes of a gzipped FileDescriptorProto
  29. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4b, 0x4c, 0xc9, 0x8d,
  30. 0x4f, 0x49, 0x2c, 0x49, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2a, 0x48, 0xd2, 0x2b,
  31. 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0x95, 0xe2, 0x2d, 0x33, 0xd4, 0x47, 0x48, 0x19, 0x99, 0x71,
  32. 0xb1, 0xb8, 0x24, 0x96, 0x24, 0x0a, 0xe9, 0x71, 0xb1, 0x06, 0x96, 0xa6, 0x16, 0x55, 0x0a, 0x09,
  33. 0xe8, 0x95, 0x19, 0xea, 0x81, 0x99, 0x41, 0xa9, 0x85, 0xa5, 0xa9, 0xc5, 0x25, 0x52, 0x82, 0x48,
  34. 0x22, 0xc5, 0x05, 0xf9, 0x79, 0xc5, 0xa9, 0x4a, 0x0c, 0x4e, 0xbc, 0x51, 0xdc, 0x89, 0x29, 0xb9,
  35. 0xba, 0x20, 0x93, 0xf4, 0x0b, 0x92, 0x92, 0xd8, 0xc0, 0xa6, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff,
  36. 0xff, 0x24, 0x83, 0x68, 0x4f, 0x7a, 0x00, 0x00, 0x00,
  37. }
  38. // Reference imports to suppress errors if they are not otherwise used.
  39. var _ context.Context
  40. var _ grpc.ClientConnInterface
  41. // This is a compile-time assertion to ensure that this generated file
  42. // is compatible with the grpc package it is being compiled against.
  43. const _ = grpc.SupportPackageIsVersion6
  44. // DataClient is the client API for Data service.
  45. //
  46. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  47. type DataClient interface {
  48. // 通用接口查询
  49. Query(ctx context.Context, in *v1.QueryRequest, opts ...grpc.CallOption) (*v1.QueryResponse, error)
  50. }
  51. type dataClient struct {
  52. cc grpc.ClientConnInterface
  53. }
  54. func NewDataClient(cc grpc.ClientConnInterface) DataClient {
  55. return &dataClient{cc}
  56. }
  57. func (c *dataClient) Query(ctx context.Context, in *v1.QueryRequest, opts ...grpc.CallOption) (*v1.QueryResponse, error) {
  58. out := new(v1.QueryResponse)
  59. err := c.cc.Invoke(ctx, "/pb.service.Data/Query", in, out, opts...)
  60. if err != nil {
  61. return nil, err
  62. }
  63. return out, nil
  64. }
  65. // DataServer is the server API for Data service.
  66. type DataServer interface {
  67. // 通用接口查询
  68. Query(context.Context, *v1.QueryRequest) (*v1.QueryResponse, error)
  69. }
  70. // UnimplementedDataServer can be embedded to have forward compatible implementations.
  71. type UnimplementedDataServer struct {
  72. }
  73. func (*UnimplementedDataServer) Query(ctx context.Context, req *v1.QueryRequest) (*v1.QueryResponse, error) {
  74. return nil, status.Errorf(codes.Unimplemented, "method Query not implemented")
  75. }
  76. func RegisterDataServer(s *grpc.Server, srv DataServer) {
  77. s.RegisterService(&_Data_serviceDesc, srv)
  78. }
  79. func _Data_Query_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  80. in := new(v1.QueryRequest)
  81. if err := dec(in); err != nil {
  82. return nil, err
  83. }
  84. if interceptor == nil {
  85. return srv.(DataServer).Query(ctx, in)
  86. }
  87. info := &grpc.UnaryServerInfo{
  88. Server: srv,
  89. FullMethod: "/pb.service.Data/Query",
  90. }
  91. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  92. return srv.(DataServer).Query(ctx, req.(*v1.QueryRequest))
  93. }
  94. return interceptor(ctx, in, info, handler)
  95. }
  96. var _Data_serviceDesc = grpc.ServiceDesc{
  97. ServiceName: "pb.service.Data",
  98. HandlerType: (*DataServer)(nil),
  99. Methods: []grpc.MethodDesc{
  100. {
  101. MethodName: "Query",
  102. Handler: _Data_Query_Handler,
  103. },
  104. },
  105. Streams: []grpc.StreamDesc{},
  106. Metadata: "adm_data.proto",
  107. }