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