mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 14:13:03 +00:00
7f5e34c857
Co-authored-by: RPRX <63339210+rprx@users.noreply.github.com>
102 lines
3.7 KiB
Go
102 lines
3.7 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
|
|
package command
|
|
|
|
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
|
|
|
|
// LoggerServiceClient is the client API for LoggerService 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 LoggerServiceClient interface {
|
|
RestartLogger(ctx context.Context, in *RestartLoggerRequest, opts ...grpc.CallOption) (*RestartLoggerResponse, error)
|
|
}
|
|
|
|
type loggerServiceClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewLoggerServiceClient(cc grpc.ClientConnInterface) LoggerServiceClient {
|
|
return &loggerServiceClient{cc}
|
|
}
|
|
|
|
func (c *loggerServiceClient) RestartLogger(ctx context.Context, in *RestartLoggerRequest, opts ...grpc.CallOption) (*RestartLoggerResponse, error) {
|
|
out := new(RestartLoggerResponse)
|
|
err := c.cc.Invoke(ctx, "/xray.app.log.command.LoggerService/RestartLogger", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// LoggerServiceServer is the server API for LoggerService service.
|
|
// All implementations must embed UnimplementedLoggerServiceServer
|
|
// for forward compatibility
|
|
type LoggerServiceServer interface {
|
|
RestartLogger(context.Context, *RestartLoggerRequest) (*RestartLoggerResponse, error)
|
|
mustEmbedUnimplementedLoggerServiceServer()
|
|
}
|
|
|
|
// UnimplementedLoggerServiceServer must be embedded to have forward compatible implementations.
|
|
type UnimplementedLoggerServiceServer struct {
|
|
}
|
|
|
|
func (UnimplementedLoggerServiceServer) RestartLogger(context.Context, *RestartLoggerRequest) (*RestartLoggerResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RestartLogger not implemented")
|
|
}
|
|
func (UnimplementedLoggerServiceServer) mustEmbedUnimplementedLoggerServiceServer() {}
|
|
|
|
// UnsafeLoggerServiceServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to LoggerServiceServer will
|
|
// result in compilation errors.
|
|
type UnsafeLoggerServiceServer interface {
|
|
mustEmbedUnimplementedLoggerServiceServer()
|
|
}
|
|
|
|
func RegisterLoggerServiceServer(s grpc.ServiceRegistrar, srv LoggerServiceServer) {
|
|
s.RegisterService(&LoggerService_ServiceDesc, srv)
|
|
}
|
|
|
|
func _LoggerService_RestartLogger_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(RestartLoggerRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(LoggerServiceServer).RestartLogger(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/xray.app.log.command.LoggerService/RestartLogger",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(LoggerServiceServer).RestartLogger(ctx, req.(*RestartLoggerRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// LoggerService_ServiceDesc is the grpc.ServiceDesc for LoggerService service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var LoggerService_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "xray.app.log.command.LoggerService",
|
|
HandlerType: (*LoggerServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "RestartLogger",
|
|
Handler: _LoggerService_RestartLogger_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "app/log/command/config.proto",
|
|
}
|