github.com/emcfarlane/larking@v0.0.0-20220605172417-1704b45ee6c3/apipb/controlpb/control_grpc.pb.go (about)

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