github.com/cosmos/cosmos-sdk@v0.50.10/testutil/testdata/testpb/tx_grpc.pb.go (about)

     1  // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
     2  // versions:
     3  // - protoc-gen-go-grpc v1.3.0
     4  // - protoc             (unknown)
     5  // source: testpb/tx.proto
     6  
     7  package testpb
     8  
     9  import (
    10  	context "context"
    11  	grpc "google.golang.org/grpc"
    12  	codes "google.golang.org/grpc/codes"
    13  	status "google.golang.org/grpc/status"
    14  )
    15  
    16  // This is a compile-time assertion to ensure that this generated file
    17  // is compatible with the grpc package it is being compiled against.
    18  // Requires gRPC-Go v1.32.0 or later.
    19  const _ = grpc.SupportPackageIsVersion7
    20  
    21  const (
    22  	Msg_CreateDog_FullMethodName = "/testpb.Msg/CreateDog"
    23  )
    24  
    25  // MsgClient is the client API for Msg service.
    26  //
    27  // 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.
    28  type MsgClient interface {
    29  	CreateDog(ctx context.Context, in *MsgCreateDog, opts ...grpc.CallOption) (*MsgCreateDogResponse, error)
    30  }
    31  
    32  type msgClient struct {
    33  	cc grpc.ClientConnInterface
    34  }
    35  
    36  func NewMsgClient(cc grpc.ClientConnInterface) MsgClient {
    37  	return &msgClient{cc}
    38  }
    39  
    40  func (c *msgClient) CreateDog(ctx context.Context, in *MsgCreateDog, opts ...grpc.CallOption) (*MsgCreateDogResponse, error) {
    41  	out := new(MsgCreateDogResponse)
    42  	err := c.cc.Invoke(ctx, Msg_CreateDog_FullMethodName, in, out, opts...)
    43  	if err != nil {
    44  		return nil, err
    45  	}
    46  	return out, nil
    47  }
    48  
    49  // MsgServer is the server API for Msg service.
    50  // All implementations must embed UnimplementedMsgServer
    51  // for forward compatibility
    52  type MsgServer interface {
    53  	CreateDog(context.Context, *MsgCreateDog) (*MsgCreateDogResponse, error)
    54  	mustEmbedUnimplementedMsgServer()
    55  }
    56  
    57  // UnimplementedMsgServer must be embedded to have forward compatible implementations.
    58  type UnimplementedMsgServer struct {
    59  }
    60  
    61  func (UnimplementedMsgServer) CreateDog(context.Context, *MsgCreateDog) (*MsgCreateDogResponse, error) {
    62  	return nil, status.Errorf(codes.Unimplemented, "method CreateDog not implemented")
    63  }
    64  func (UnimplementedMsgServer) mustEmbedUnimplementedMsgServer() {}
    65  
    66  // UnsafeMsgServer may be embedded to opt out of forward compatibility for this service.
    67  // Use of this interface is not recommended, as added methods to MsgServer will
    68  // result in compilation errors.
    69  type UnsafeMsgServer interface {
    70  	mustEmbedUnimplementedMsgServer()
    71  }
    72  
    73  func RegisterMsgServer(s grpc.ServiceRegistrar, srv MsgServer) {
    74  	s.RegisterService(&Msg_ServiceDesc, srv)
    75  }
    76  
    77  func _Msg_CreateDog_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
    78  	in := new(MsgCreateDog)
    79  	if err := dec(in); err != nil {
    80  		return nil, err
    81  	}
    82  	if interceptor == nil {
    83  		return srv.(MsgServer).CreateDog(ctx, in)
    84  	}
    85  	info := &grpc.UnaryServerInfo{
    86  		Server:     srv,
    87  		FullMethod: Msg_CreateDog_FullMethodName,
    88  	}
    89  	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
    90  		return srv.(MsgServer).CreateDog(ctx, req.(*MsgCreateDog))
    91  	}
    92  	return interceptor(ctx, in, info, handler)
    93  }
    94  
    95  // Msg_ServiceDesc is the grpc.ServiceDesc for Msg service.
    96  // It's only intended for direct use with grpc.RegisterService,
    97  // and not to be introspected or modified (even as a copy)
    98  var Msg_ServiceDesc = grpc.ServiceDesc{
    99  	ServiceName: "testpb.Msg",
   100  	HandlerType: (*MsgServer)(nil),
   101  	Methods: []grpc.MethodDesc{
   102  		{
   103  			MethodName: "CreateDog",
   104  			Handler:    _Msg_CreateDog_Handler,
   105  		},
   106  	},
   107  	Streams:  []grpc.StreamDesc{},
   108  	Metadata: "testpb/tx.proto",
   109  }