123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: adm_task_service.proto
- // package声明符,用来防止不同的消息类型有命名冲突
- package pb
- import (
- v1 "adm-management/pb/v1"
- context "context"
- fmt "fmt"
- proto "github.com/golang/protobuf/proto"
- grpc "google.golang.org/grpc"
- codes "google.golang.org/grpc/codes"
- status "google.golang.org/grpc/status"
- math "math"
- )
- // Reference imports to suppress errors if they are not otherwise used.
- var _ = proto.Marshal
- var _ = fmt.Errorf
- var _ = math.Inf
- // This is a compile-time assertion to ensure that this generated file
- // is compatible with the proto package it is being compiled against.
- // A compilation error at this line likely means your copy of the
- // proto package needs to be updated.
- const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
- func init() {
- proto.RegisterFile("adm_task_service.proto", fileDescriptor_b888879dea74b804)
- }
- var fileDescriptor_b888879dea74b804 = []byte{
- // 140 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4b, 0x4c, 0xc9, 0x8d,
- 0x2f, 0x49, 0x2c, 0xce, 0x8e, 0x2f, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28, 0xca,
- 0x2f, 0xc9, 0x17, 0xe2, 0x2a, 0x48, 0xd2, 0x83, 0x8a, 0x48, 0xf1, 0x95, 0x19, 0xea, 0x67, 0xa4,
- 0xe6, 0xe4, 0xe4, 0x43, 0xe4, 0x8c, 0xac, 0xb9, 0xd8, 0xdd, 0x8b, 0x52, 0x53, 0x4b, 0x52, 0x8b,
- 0x84, 0x0c, 0xb8, 0xb8, 0x82, 0x13, 0x2b, 0x3d, 0x40, 0x92, 0x61, 0x86, 0x42, 0x02, 0x7a, 0x65,
- 0x86, 0x7a, 0x60, 0x4e, 0x50, 0x6a, 0x61, 0x69, 0x6a, 0x71, 0x89, 0x14, 0x1f, 0x92, 0x48, 0x41,
- 0x4e, 0xa5, 0x12, 0x83, 0x93, 0x70, 0x94, 0x60, 0x62, 0x4a, 0xae, 0x6e, 0x6e, 0x62, 0x5e, 0x62,
- 0x7a, 0x6a, 0x6e, 0x6a, 0x5e, 0x89, 0x7e, 0x41, 0x52, 0x12, 0x1b, 0xd8, 0x60, 0x63, 0x40, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0x5c, 0x50, 0x83, 0x14, 0x8e, 0x00, 0x00, 0x00,
- }
- // Reference imports to suppress errors if they are not otherwise used.
- var _ context.Context
- var _ grpc.ClientConnInterface
- // 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.SupportPackageIsVersion6
- // GreeterClient is the client API for Greeter service.
- //
- // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
- type GreeterClient interface {
- // Sends a greeting
- SayHelloV1(ctx context.Context, in *v1.HelloRequest, opts ...grpc.CallOption) (*v1.HelloReply, error)
- }
- type greeterClient struct {
- cc grpc.ClientConnInterface
- }
- func NewGreeterClient(cc grpc.ClientConnInterface) GreeterClient {
- return &greeterClient{cc}
- }
- func (c *greeterClient) SayHelloV1(ctx context.Context, in *v1.HelloRequest, opts ...grpc.CallOption) (*v1.HelloReply, error) {
- out := new(v1.HelloReply)
- err := c.cc.Invoke(ctx, "/pb.service.Greeter/SayHelloV1", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- // GreeterServer is the server API for Greeter service.
- type GreeterServer interface {
- // Sends a greeting
- SayHelloV1(context.Context, *v1.HelloRequest) (*v1.HelloReply, error)
- }
- // UnimplementedGreeterServer can be embedded to have forward compatible implementations.
- type UnimplementedGreeterServer struct {
- }
- func (*UnimplementedGreeterServer) SayHelloV1(ctx context.Context, req *v1.HelloRequest) (*v1.HelloReply, error) {
- return nil, status.Errorf(codes.Unimplemented, "method SayHelloV1 not implemented")
- }
- func RegisterGreeterServer(s *grpc.Server, srv GreeterServer) {
- s.RegisterService(&_Greeter_serviceDesc, srv)
- }
- func _Greeter_SayHelloV1_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(v1.HelloRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(GreeterServer).SayHelloV1(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/pb.service.Greeter/SayHelloV1",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(GreeterServer).SayHelloV1(ctx, req.(*v1.HelloRequest))
- }
- return interceptor(ctx, in, info, handler)
- }
- var _Greeter_serviceDesc = grpc.ServiceDesc{
- ServiceName: "pb.service.Greeter",
- HandlerType: (*GreeterServer)(nil),
- Methods: []grpc.MethodDesc{
- {
- MethodName: "SayHelloV1",
- Handler: _Greeter_SayHelloV1_Handler,
- },
- },
- Streams: []grpc.StreamDesc{},
- Metadata: "adm_task_service.proto",
- }
|