| // Code generated by protoc-gen-go-grpc. DO NOT EDIT. |
| |
| package testpb |
| |
| 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 |
| |
| // FooClient is the client API for Foo 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 FooClient interface { |
| Single(ctx context.Context, in *FooRequest, opts ...grpc.CallOption) (*FooResponse, error) |
| Multiple(ctx context.Context, opts ...grpc.CallOption) (Foo_MultipleClient, error) |
| } |
| |
| type fooClient struct { |
| cc grpc.ClientConnInterface |
| } |
| |
| func NewFooClient(cc grpc.ClientConnInterface) FooClient { |
| return &fooClient{cc} |
| } |
| |
| func (c *fooClient) Single(ctx context.Context, in *FooRequest, opts ...grpc.CallOption) (*FooResponse, error) { |
| out := new(FooResponse) |
| err := c.cc.Invoke(ctx, "/testpb.Foo/Single", in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| func (c *fooClient) Multiple(ctx context.Context, opts ...grpc.CallOption) (Foo_MultipleClient, error) { |
| stream, err := c.cc.NewStream(ctx, &_Foo_serviceDesc.Streams[0], "/testpb.Foo/Multiple", opts...) |
| if err != nil { |
| return nil, err |
| } |
| x := &fooMultipleClient{stream} |
| return x, nil |
| } |
| |
| type Foo_MultipleClient interface { |
| Send(*FooRequest) error |
| Recv() (*FooResponse, error) |
| grpc.ClientStream |
| } |
| |
| type fooMultipleClient struct { |
| grpc.ClientStream |
| } |
| |
| func (x *fooMultipleClient) Send(m *FooRequest) error { |
| return x.ClientStream.SendMsg(m) |
| } |
| |
| func (x *fooMultipleClient) Recv() (*FooResponse, error) { |
| m := new(FooResponse) |
| if err := x.ClientStream.RecvMsg(m); err != nil { |
| return nil, err |
| } |
| return m, nil |
| } |
| |
| // FooServer is the server API for Foo service. |
| // All implementations must embed UnimplementedFooServer |
| // for forward compatibility |
| type FooServer interface { |
| Single(context.Context, *FooRequest) (*FooResponse, error) |
| Multiple(Foo_MultipleServer) error |
| mustEmbedUnimplementedFooServer() |
| } |
| |
| // UnimplementedFooServer must be embedded to have forward compatible implementations. |
| type UnimplementedFooServer struct { |
| } |
| |
| func (UnimplementedFooServer) Single(context.Context, *FooRequest) (*FooResponse, error) { |
| return nil, status.Errorf(codes.Unimplemented, "method Single not implemented") |
| } |
| func (UnimplementedFooServer) Multiple(Foo_MultipleServer) error { |
| return status.Errorf(codes.Unimplemented, "method Multiple not implemented") |
| } |
| func (UnimplementedFooServer) mustEmbedUnimplementedFooServer() {} |
| |
| // UnsafeFooServer may be embedded to opt out of forward compatibility for this service. |
| // Use of this interface is not recommended, as added methods to FooServer will |
| // result in compilation errors. |
| type UnsafeFooServer interface { |
| mustEmbedUnimplementedFooServer() |
| } |
| |
| func RegisterFooServer(s grpc.ServiceRegistrar, srv FooServer) { |
| s.RegisterService(&_Foo_serviceDesc, srv) |
| } |
| |
| func _Foo_Single_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
| in := new(FooRequest) |
| if err := dec(in); err != nil { |
| return nil, err |
| } |
| if interceptor == nil { |
| return srv.(FooServer).Single(ctx, in) |
| } |
| info := &grpc.UnaryServerInfo{ |
| Server: srv, |
| FullMethod: "/testpb.Foo/Single", |
| } |
| handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
| return srv.(FooServer).Single(ctx, req.(*FooRequest)) |
| } |
| return interceptor(ctx, in, info, handler) |
| } |
| |
| func _Foo_Multiple_Handler(srv interface{}, stream grpc.ServerStream) error { |
| return srv.(FooServer).Multiple(&fooMultipleServer{stream}) |
| } |
| |
| type Foo_MultipleServer interface { |
| Send(*FooResponse) error |
| Recv() (*FooRequest, error) |
| grpc.ServerStream |
| } |
| |
| type fooMultipleServer struct { |
| grpc.ServerStream |
| } |
| |
| func (x *fooMultipleServer) Send(m *FooResponse) error { |
| return x.ServerStream.SendMsg(m) |
| } |
| |
| func (x *fooMultipleServer) Recv() (*FooRequest, error) { |
| m := new(FooRequest) |
| if err := x.ServerStream.RecvMsg(m); err != nil { |
| return nil, err |
| } |
| return m, nil |
| } |
| |
| var _Foo_serviceDesc = grpc.ServiceDesc{ |
| ServiceName: "testpb.Foo", |
| HandlerType: (*FooServer)(nil), |
| Methods: []grpc.MethodDesc{ |
| { |
| MethodName: "Single", |
| Handler: _Foo_Single_Handler, |
| }, |
| }, |
| Streams: []grpc.StreamDesc{ |
| { |
| StreamName: "Multiple", |
| Handler: _Foo_Multiple_Handler, |
| ServerStreams: true, |
| ClientStreams: true, |
| }, |
| }, |
| Metadata: "test.proto", |
| } |