// Code generated by protoc-gen-go-grpc. DO NOT EDIT. package pb import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" ) // 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 // TestClient is the client API for Test 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. type TestClient interface { Call(ctx context.Context, in *CallReq, opts ...grpc.CallOption) (*CallRsp, error) CallError(ctx context.Context, in *CallReq1, opts ...grpc.CallOption) (*CallRsp1, error) } type testClient struct { cc grpc.ClientConnInterface } func NewTestClient(cc grpc.ClientConnInterface) TestClient { return &testClient{cc} } func (c *testClient) Call(ctx context.Context, in *CallReq, opts ...grpc.CallOption) (*CallRsp, error) { out := new(CallRsp) err := c.cc.Invoke(ctx, "/test.Test/Call", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *testClient) CallError(ctx context.Context, in *CallReq1, opts ...grpc.CallOption) (*CallRsp1, error) { out := new(CallRsp1) err := c.cc.Invoke(ctx, "/test.Test/CallError", in, out, opts...) if err != nil { return nil, err } return out, nil } // TestServer is the server API for Test service. // All implementations must embed UnimplementedTestServer // for forward compatibility type TestServer interface { Call(context.Context, *CallReq) (*CallRsp, error) CallError(context.Context, *CallReq1) (*CallRsp1, error) mustEmbedUnimplementedTestServer() } // UnimplementedTestServer must be embedded to have forward compatible implementations. type UnimplementedTestServer struct { } func (*UnimplementedTestServer) Call(context.Context, *CallReq) (*CallRsp, error) { return nil, status.Errorf(codes.Unimplemented, "method Call not implemented") } func (*UnimplementedTestServer) CallError(context.Context, *CallReq1) (*CallRsp1, error) { return nil, status.Errorf(codes.Unimplemented, "method CallError not implemented") } func (*UnimplementedTestServer) mustEmbedUnimplementedTestServer() {} func RegisterTestServer(s *grpc.Server, srv TestServer) { s.RegisterService(&_Test_serviceDesc, srv) } func _Test_Call_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CallReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(TestServer).Call(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/test.Test/Call", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(TestServer).Call(ctx, req.(*CallReq)) } return interceptor(ctx, in, info, handler) } func _Test_CallError_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CallReq1) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(TestServer).CallError(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/test.Test/CallError", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(TestServer).CallError(ctx, req.(*CallReq1)) } return interceptor(ctx, in, info, handler) } var _Test_serviceDesc = grpc.ServiceDesc{ ServiceName: "test.Test", HandlerType: (*TestServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Call", Handler: _Test_Call_Handler, }, { MethodName: "CallError", Handler: _Test_CallError_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "test.proto", }