| // Code generated by protoc-gen-go-grpc. DO NOT EDIT. |
| // versions: |
| // - protoc-gen-go-grpc v1.3.0 |
| // - protoc v3.21.12 |
| // source: test.proto |
| |
| package testproto |
| |
| 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. |
| // Requires gRPC-Go v1.32.0 or later. |
| const _ = grpc.SupportPackageIsVersion7 |
| |
| const ( |
| TestService_GetSomething_FullMethodName = "/testproto.TestService/GetSomething" |
| ) |
| |
| // 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 { |
| GetSomething(ctx context.Context, in *GetSomethingRequest, opts ...grpc.CallOption) (*GetSomethingResponse, error) |
| } |
| |
| type testServiceClient struct { |
| cc grpc.ClientConnInterface |
| } |
| |
| func NewTestServiceClient(cc grpc.ClientConnInterface) TestServiceClient { |
| return &testServiceClient{cc} |
| } |
| |
| func (c *testServiceClient) GetSomething(ctx context.Context, in *GetSomethingRequest, opts ...grpc.CallOption) (*GetSomethingResponse, error) { |
| out := new(GetSomethingResponse) |
| err := c.cc.Invoke(ctx, TestService_GetSomething_FullMethodName, in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| // TestServiceServer is the server API for TestService service. |
| // All implementations must embed UnimplementedTestServiceServer |
| // for forward compatibility |
| type TestServiceServer interface { |
| GetSomething(context.Context, *GetSomethingRequest) (*GetSomethingResponse, error) |
| mustEmbedUnimplementedTestServiceServer() |
| } |
| |
| // UnimplementedTestServiceServer must be embedded to have forward compatible implementations. |
| type UnimplementedTestServiceServer struct { |
| } |
| |
| func (UnimplementedTestServiceServer) GetSomething(context.Context, *GetSomethingRequest) (*GetSomethingResponse, error) { |
| return nil, status.Errorf(codes.Unimplemented, "method GetSomething 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.ServiceRegistrar, srv TestServiceServer) { |
| s.RegisterService(&TestService_ServiceDesc, srv) |
| } |
| |
| func _TestService_GetSomething_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
| in := new(GetSomethingRequest) |
| if err := dec(in); err != nil { |
| return nil, err |
| } |
| if interceptor == nil { |
| return srv.(TestServiceServer).GetSomething(ctx, in) |
| } |
| info := &grpc.UnaryServerInfo{ |
| Server: srv, |
| FullMethod: TestService_GetSomething_FullMethodName, |
| } |
| handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
| return srv.(TestServiceServer).GetSomething(ctx, req.(*GetSomethingRequest)) |
| } |
| return interceptor(ctx, in, info, handler) |
| } |
| |
| // TestService_ServiceDesc is the grpc.ServiceDesc for TestService service. |
| // It's only intended for direct use with grpc.RegisterService, |
| // and not to be introspected or modified (even as a copy) |
| var TestService_ServiceDesc = grpc.ServiceDesc{ |
| ServiceName: "testproto.TestService", |
| HandlerType: (*TestServiceServer)(nil), |
| Methods: []grpc.MethodDesc{ |
| { |
| MethodName: "GetSomething", |
| Handler: _TestService_GetSomething_Handler, |
| }, |
| }, |
| Streams: []grpc.StreamDesc{}, |
| Metadata: "test.proto", |
| } |