github.com/v2fly/v2ray-core/v4@v4.45.2/app/observatory/command/command_grpc.pb.go (about) 1 // Code generated by protoc-gen-go-grpc. DO NOT EDIT. 2 3 package command 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 // ObservatoryServiceClient is the client API for ObservatoryService 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 ObservatoryServiceClient interface { 21 GetOutboundStatus(ctx context.Context, in *GetOutboundStatusRequest, opts ...grpc.CallOption) (*GetOutboundStatusResponse, error) 22 } 23 24 type observatoryServiceClient struct { 25 cc grpc.ClientConnInterface 26 } 27 28 func NewObservatoryServiceClient(cc grpc.ClientConnInterface) ObservatoryServiceClient { 29 return &observatoryServiceClient{cc} 30 } 31 32 func (c *observatoryServiceClient) GetOutboundStatus(ctx context.Context, in *GetOutboundStatusRequest, opts ...grpc.CallOption) (*GetOutboundStatusResponse, error) { 33 out := new(GetOutboundStatusResponse) 34 err := c.cc.Invoke(ctx, "/v2ray.core.app.observatory.command.ObservatoryService/GetOutboundStatus", in, out, opts...) 35 if err != nil { 36 return nil, err 37 } 38 return out, nil 39 } 40 41 // ObservatoryServiceServer is the server API for ObservatoryService service. 42 // All implementations must embed UnimplementedObservatoryServiceServer 43 // for forward compatibility 44 type ObservatoryServiceServer interface { 45 GetOutboundStatus(context.Context, *GetOutboundStatusRequest) (*GetOutboundStatusResponse, error) 46 mustEmbedUnimplementedObservatoryServiceServer() 47 } 48 49 // UnimplementedObservatoryServiceServer must be embedded to have forward compatible implementations. 50 type UnimplementedObservatoryServiceServer struct { 51 } 52 53 func (UnimplementedObservatoryServiceServer) GetOutboundStatus(context.Context, *GetOutboundStatusRequest) (*GetOutboundStatusResponse, error) { 54 return nil, status.Errorf(codes.Unimplemented, "method GetOutboundStatus not implemented") 55 } 56 func (UnimplementedObservatoryServiceServer) mustEmbedUnimplementedObservatoryServiceServer() {} 57 58 // UnsafeObservatoryServiceServer may be embedded to opt out of forward compatibility for this service. 59 // Use of this interface is not recommended, as added methods to ObservatoryServiceServer will 60 // result in compilation errors. 61 type UnsafeObservatoryServiceServer interface { 62 mustEmbedUnimplementedObservatoryServiceServer() 63 } 64 65 func RegisterObservatoryServiceServer(s grpc.ServiceRegistrar, srv ObservatoryServiceServer) { 66 s.RegisterService(&ObservatoryService_ServiceDesc, srv) 67 } 68 69 func _ObservatoryService_GetOutboundStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { 70 in := new(GetOutboundStatusRequest) 71 if err := dec(in); err != nil { 72 return nil, err 73 } 74 if interceptor == nil { 75 return srv.(ObservatoryServiceServer).GetOutboundStatus(ctx, in) 76 } 77 info := &grpc.UnaryServerInfo{ 78 Server: srv, 79 FullMethod: "/v2ray.core.app.observatory.command.ObservatoryService/GetOutboundStatus", 80 } 81 handler := func(ctx context.Context, req interface{}) (interface{}, error) { 82 return srv.(ObservatoryServiceServer).GetOutboundStatus(ctx, req.(*GetOutboundStatusRequest)) 83 } 84 return interceptor(ctx, in, info, handler) 85 } 86 87 // ObservatoryService_ServiceDesc is the grpc.ServiceDesc for ObservatoryService 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 ObservatoryService_ServiceDesc = grpc.ServiceDesc{ 91 ServiceName: "v2ray.core.app.observatory.command.ObservatoryService", 92 HandlerType: (*ObservatoryServiceServer)(nil), 93 Methods: []grpc.MethodDesc{ 94 { 95 MethodName: "GetOutboundStatus", 96 Handler: _ObservatoryService_GetOutboundStatus_Handler, 97 }, 98 }, 99 Streams: []grpc.StreamDesc{}, 100 Metadata: "app/observatory/command/command.proto", 101 }