| // Code generated by protoc-gen-go-grpc. DO NOT EDIT. |
| |
| package grpc_testing |
| |
| 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.SupportPackageIsVersion7 |
| |
| // TestServiceClient is the client API for TestService 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 TestServiceClient interface { |
| // One request followed by one response. |
| // The server returns the client id as-is. |
| UnaryCall(ctx context.Context, in *SimpleRequest, opts ...grpc.CallOption) (*SimpleResponse, error) |
| // A sequence of requests with each request served by the server immediately. |
| // As one request could lead to multiple responses, this interface |
| // demonstrates the idea of full duplexing. |
| FullDuplexCall(ctx context.Context, opts ...grpc.CallOption) (TestService_FullDuplexCallClient, error) |
| // Client stream |
| ClientStreamCall(ctx context.Context, opts ...grpc.CallOption) (TestService_ClientStreamCallClient, error) |
| // Server stream |
| ServerStreamCall(ctx context.Context, in *SimpleRequest, opts ...grpc.CallOption) (TestService_ServerStreamCallClient, error) |
| } |
| |
| type testServiceClient struct { |
| cc grpc.ClientConnInterface |
| } |
| |
| func NewTestServiceClient(cc grpc.ClientConnInterface) TestServiceClient { |
| return &testServiceClient{cc} |
| } |
| |
| func (c *testServiceClient) UnaryCall(ctx context.Context, in *SimpleRequest, opts ...grpc.CallOption) (*SimpleResponse, error) { |
| out := new(SimpleResponse) |
| err := c.cc.Invoke(ctx, "/grpc.testing.TestService/UnaryCall", in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| func (c *testServiceClient) FullDuplexCall(ctx context.Context, opts ...grpc.CallOption) (TestService_FullDuplexCallClient, error) { |
| stream, err := c.cc.NewStream(ctx, &_TestService_serviceDesc.Streams[0], "/grpc.testing.TestService/FullDuplexCall", opts...) |
| if err != nil { |
| return nil, err |
| } |
| x := &testServiceFullDuplexCallClient{stream} |
| return x, nil |
| } |
| |
| type TestService_FullDuplexCallClient interface { |
| Send(*SimpleRequest) error |
| Recv() (*SimpleResponse, error) |
| grpc.ClientStream |
| } |
| |
| type testServiceFullDuplexCallClient struct { |
| grpc.ClientStream |
| } |
| |
| func (x *testServiceFullDuplexCallClient) Send(m *SimpleRequest) error { |
| return x.ClientStream.SendMsg(m) |
| } |
| |
| func (x *testServiceFullDuplexCallClient) Recv() (*SimpleResponse, error) { |
| m := new(SimpleResponse) |
| if err := x.ClientStream.RecvMsg(m); err != nil { |
| return nil, err |
| } |
| return m, nil |
| } |
| |
| func (c *testServiceClient) ClientStreamCall(ctx context.Context, opts ...grpc.CallOption) (TestService_ClientStreamCallClient, error) { |
| stream, err := c.cc.NewStream(ctx, &_TestService_serviceDesc.Streams[1], "/grpc.testing.TestService/ClientStreamCall", opts...) |
| if err != nil { |
| return nil, err |
| } |
| x := &testServiceClientStreamCallClient{stream} |
| return x, nil |
| } |
| |
| type TestService_ClientStreamCallClient interface { |
| Send(*SimpleRequest) error |
| CloseAndRecv() (*SimpleResponse, error) |
| grpc.ClientStream |
| } |
| |
| type testServiceClientStreamCallClient struct { |
| grpc.ClientStream |
| } |
| |
| func (x *testServiceClientStreamCallClient) Send(m *SimpleRequest) error { |
| return x.ClientStream.SendMsg(m) |
| } |
| |
| func (x *testServiceClientStreamCallClient) CloseAndRecv() (*SimpleResponse, error) { |
| if err := x.ClientStream.CloseSend(); err != nil { |
| return nil, err |
| } |
| m := new(SimpleResponse) |
| if err := x.ClientStream.RecvMsg(m); err != nil { |
| return nil, err |
| } |
| return m, nil |
| } |
| |
| func (c *testServiceClient) ServerStreamCall(ctx context.Context, in *SimpleRequest, opts ...grpc.CallOption) (TestService_ServerStreamCallClient, error) { |
| stream, err := c.cc.NewStream(ctx, &_TestService_serviceDesc.Streams[2], "/grpc.testing.TestService/ServerStreamCall", opts...) |
| if err != nil { |
| return nil, err |
| } |
| x := &testServiceServerStreamCallClient{stream} |
| if err := x.ClientStream.SendMsg(in); err != nil { |
| return nil, err |
| } |
| if err := x.ClientStream.CloseSend(); err != nil { |
| return nil, err |
| } |
| return x, nil |
| } |
| |
| type TestService_ServerStreamCallClient interface { |
| Recv() (*SimpleResponse, error) |
| grpc.ClientStream |
| } |
| |
| type testServiceServerStreamCallClient struct { |
| grpc.ClientStream |
| } |
| |
| func (x *testServiceServerStreamCallClient) Recv() (*SimpleResponse, error) { |
| m := new(SimpleResponse) |
| if err := x.ClientStream.RecvMsg(m); err != nil { |
| return nil, err |
| } |
| return m, nil |
| } |
| |
| // TestServiceServer is the server API for TestService service. |
| // All implementations must embed UnimplementedTestServiceServer |
| // for forward compatibility |
| type TestServiceServer interface { |
| // One request followed by one response. |
| // The server returns the client id as-is. |
| UnaryCall(context.Context, *SimpleRequest) (*SimpleResponse, error) |
| // A sequence of requests with each request served by the server immediately. |
| // As one request could lead to multiple responses, this interface |
| // demonstrates the idea of full duplexing. |
| FullDuplexCall(TestService_FullDuplexCallServer) error |
| // Client stream |
| ClientStreamCall(TestService_ClientStreamCallServer) error |
| // Server stream |
| ServerStreamCall(*SimpleRequest, TestService_ServerStreamCallServer) error |
| mustEmbedUnimplementedTestServiceServer() |
| } |
| |
| // UnimplementedTestServiceServer must be embedded to have forward compatible implementations. |
| type UnimplementedTestServiceServer struct { |
| } |
| |
| func (UnimplementedTestServiceServer) UnaryCall(context.Context, *SimpleRequest) (*SimpleResponse, error) { |
| return nil, status.Errorf(codes.Unimplemented, "method UnaryCall not implemented") |
| } |
| func (UnimplementedTestServiceServer) FullDuplexCall(TestService_FullDuplexCallServer) error { |
| return status.Errorf(codes.Unimplemented, "method FullDuplexCall not implemented") |
| } |
| func (UnimplementedTestServiceServer) ClientStreamCall(TestService_ClientStreamCallServer) error { |
| return status.Errorf(codes.Unimplemented, "method ClientStreamCall not implemented") |
| } |
| func (UnimplementedTestServiceServer) ServerStreamCall(*SimpleRequest, TestService_ServerStreamCallServer) error { |
| return status.Errorf(codes.Unimplemented, "method ServerStreamCall not implemented") |
| } |
| func (UnimplementedTestServiceServer) mustEmbedUnimplementedTestServiceServer() {} |
| |
| // UnsafeTestServiceServer may be embedded to opt out of forward compatibility for this service. |
| // Use of this interface is not recommended, as added methods to TestServiceServer will |
| // result in compilation errors. |
| type UnsafeTestServiceServer interface { |
| mustEmbedUnimplementedTestServiceServer() |
| } |
| |
| func RegisterTestServiceServer(s *grpc.Server, srv TestServiceServer) { |
| s.RegisterService(&_TestService_serviceDesc, srv) |
| } |
| |
| func _TestService_UnaryCall_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
| in := new(SimpleRequest) |
| if err := dec(in); err != nil { |
| return nil, err |
| } |
| if interceptor == nil { |
| return srv.(TestServiceServer).UnaryCall(ctx, in) |
| } |
| info := &grpc.UnaryServerInfo{ |
| Server: srv, |
| FullMethod: "/grpc.testing.TestService/UnaryCall", |
| } |
| handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
| return srv.(TestServiceServer).UnaryCall(ctx, req.(*SimpleRequest)) |
| } |
| return interceptor(ctx, in, info, handler) |
| } |
| |
| func _TestService_FullDuplexCall_Handler(srv interface{}, stream grpc.ServerStream) error { |
| return srv.(TestServiceServer).FullDuplexCall(&testServiceFullDuplexCallServer{stream}) |
| } |
| |
| type TestService_FullDuplexCallServer interface { |
| Send(*SimpleResponse) error |
| Recv() (*SimpleRequest, error) |
| grpc.ServerStream |
| } |
| |
| type testServiceFullDuplexCallServer struct { |
| grpc.ServerStream |
| } |
| |
| func (x *testServiceFullDuplexCallServer) Send(m *SimpleResponse) error { |
| return x.ServerStream.SendMsg(m) |
| } |
| |
| func (x *testServiceFullDuplexCallServer) Recv() (*SimpleRequest, error) { |
| m := new(SimpleRequest) |
| if err := x.ServerStream.RecvMsg(m); err != nil { |
| return nil, err |
| } |
| return m, nil |
| } |
| |
| func _TestService_ClientStreamCall_Handler(srv interface{}, stream grpc.ServerStream) error { |
| return srv.(TestServiceServer).ClientStreamCall(&testServiceClientStreamCallServer{stream}) |
| } |
| |
| type TestService_ClientStreamCallServer interface { |
| SendAndClose(*SimpleResponse) error |
| Recv() (*SimpleRequest, error) |
| grpc.ServerStream |
| } |
| |
| type testServiceClientStreamCallServer struct { |
| grpc.ServerStream |
| } |
| |
| func (x *testServiceClientStreamCallServer) SendAndClose(m *SimpleResponse) error { |
| return x.ServerStream.SendMsg(m) |
| } |
| |
| func (x *testServiceClientStreamCallServer) Recv() (*SimpleRequest, error) { |
| m := new(SimpleRequest) |
| if err := x.ServerStream.RecvMsg(m); err != nil { |
| return nil, err |
| } |
| return m, nil |
| } |
| |
| func _TestService_ServerStreamCall_Handler(srv interface{}, stream grpc.ServerStream) error { |
| m := new(SimpleRequest) |
| if err := stream.RecvMsg(m); err != nil { |
| return err |
| } |
| return srv.(TestServiceServer).ServerStreamCall(m, &testServiceServerStreamCallServer{stream}) |
| } |
| |
| type TestService_ServerStreamCallServer interface { |
| Send(*SimpleResponse) error |
| grpc.ServerStream |
| } |
| |
| type testServiceServerStreamCallServer struct { |
| grpc.ServerStream |
| } |
| |
| func (x *testServiceServerStreamCallServer) Send(m *SimpleResponse) error { |
| return x.ServerStream.SendMsg(m) |
| } |
| |
| var _TestService_serviceDesc = grpc.ServiceDesc{ |
| ServiceName: "grpc.testing.TestService", |
| HandlerType: (*TestServiceServer)(nil), |
| Methods: []grpc.MethodDesc{ |
| { |
| MethodName: "UnaryCall", |
| Handler: _TestService_UnaryCall_Handler, |
| }, |
| }, |
| Streams: []grpc.StreamDesc{ |
| { |
| StreamName: "FullDuplexCall", |
| Handler: _TestService_FullDuplexCall_Handler, |
| ServerStreams: true, |
| ClientStreams: true, |
| }, |
| { |
| StreamName: "ClientStreamCall", |
| Handler: _TestService_ClientStreamCall_Handler, |
| ClientStreams: true, |
| }, |
| { |
| StreamName: "ServerStreamCall", |
| Handler: _TestService_ServerStreamCall_Handler, |
| ServerStreams: true, |
| }, |
| }, |
| Metadata: "stats/grpc_testing/test.proto", |
| } |