command_grpc.pb.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
  2. // versions:
  3. // - protoc-gen-go-grpc v1.5.1
  4. // - protoc v5.28.2
  5. // source: app/observatory/command/command.proto
  6. package command
  7. import (
  8. context "context"
  9. grpc "google.golang.org/grpc"
  10. codes "google.golang.org/grpc/codes"
  11. status "google.golang.org/grpc/status"
  12. )
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the grpc package it is being compiled against.
  15. // Requires gRPC-Go v1.64.0 or later.
  16. const _ = grpc.SupportPackageIsVersion9
  17. const (
  18. ObservatoryService_GetOutboundStatus_FullMethodName = "/xray.core.app.observatory.command.ObservatoryService/GetOutboundStatus"
  19. )
  20. // ObservatoryServiceClient is the client API for ObservatoryService service.
  21. //
  22. // 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.
  23. type ObservatoryServiceClient interface {
  24. GetOutboundStatus(ctx context.Context, in *GetOutboundStatusRequest, opts ...grpc.CallOption) (*GetOutboundStatusResponse, error)
  25. }
  26. type observatoryServiceClient struct {
  27. cc grpc.ClientConnInterface
  28. }
  29. func NewObservatoryServiceClient(cc grpc.ClientConnInterface) ObservatoryServiceClient {
  30. return &observatoryServiceClient{cc}
  31. }
  32. func (c *observatoryServiceClient) GetOutboundStatus(ctx context.Context, in *GetOutboundStatusRequest, opts ...grpc.CallOption) (*GetOutboundStatusResponse, error) {
  33. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  34. out := new(GetOutboundStatusResponse)
  35. err := c.cc.Invoke(ctx, ObservatoryService_GetOutboundStatus_FullMethodName, in, out, cOpts...)
  36. if err != nil {
  37. return nil, err
  38. }
  39. return out, nil
  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. // UnimplementedObservatoryServiceServer must be embedded to have
  49. // forward compatible implementations.
  50. //
  51. // NOTE: this should be embedded by value instead of pointer to avoid a nil
  52. // pointer dereference when methods are called.
  53. type UnimplementedObservatoryServiceServer struct{}
  54. func (UnimplementedObservatoryServiceServer) GetOutboundStatus(context.Context, *GetOutboundStatusRequest) (*GetOutboundStatusResponse, error) {
  55. return nil, status.Errorf(codes.Unimplemented, "method GetOutboundStatus not implemented")
  56. }
  57. func (UnimplementedObservatoryServiceServer) mustEmbedUnimplementedObservatoryServiceServer() {}
  58. func (UnimplementedObservatoryServiceServer) testEmbeddedByValue() {}
  59. // UnsafeObservatoryServiceServer may be embedded to opt out of forward compatibility for this service.
  60. // Use of this interface is not recommended, as added methods to ObservatoryServiceServer will
  61. // result in compilation errors.
  62. type UnsafeObservatoryServiceServer interface {
  63. mustEmbedUnimplementedObservatoryServiceServer()
  64. }
  65. func RegisterObservatoryServiceServer(s grpc.ServiceRegistrar, srv ObservatoryServiceServer) {
  66. // If the following call pancis, it indicates UnimplementedObservatoryServiceServer was
  67. // embedded by pointer and is nil. This will cause panics if an
  68. // unimplemented method is ever invoked, so we test this at initialization
  69. // time to prevent it from happening at runtime later due to I/O.
  70. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
  71. t.testEmbeddedByValue()
  72. }
  73. s.RegisterService(&ObservatoryService_ServiceDesc, srv)
  74. }
  75. func _ObservatoryService_GetOutboundStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  76. in := new(GetOutboundStatusRequest)
  77. if err := dec(in); err != nil {
  78. return nil, err
  79. }
  80. if interceptor == nil {
  81. return srv.(ObservatoryServiceServer).GetOutboundStatus(ctx, in)
  82. }
  83. info := &grpc.UnaryServerInfo{
  84. Server: srv,
  85. FullMethod: ObservatoryService_GetOutboundStatus_FullMethodName,
  86. }
  87. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  88. return srv.(ObservatoryServiceServer).GetOutboundStatus(ctx, req.(*GetOutboundStatusRequest))
  89. }
  90. return interceptor(ctx, in, info, handler)
  91. }
  92. // ObservatoryService_ServiceDesc is the grpc.ServiceDesc for ObservatoryService service.
  93. // It's only intended for direct use with grpc.RegisterService,
  94. // and not to be introspected or modified (even as a copy)
  95. var ObservatoryService_ServiceDesc = grpc.ServiceDesc{
  96. ServiceName: "xray.core.app.observatory.command.ObservatoryService",
  97. HandlerType: (*ObservatoryServiceServer)(nil),
  98. Methods: []grpc.MethodDesc{
  99. {
  100. MethodName: "GetOutboundStatus",
  101. Handler: _ObservatoryService_GetOutboundStatus_Handler,
  102. },
  103. },
  104. Streams: []grpc.StreamDesc{},
  105. Metadata: "app/observatory/command/command.proto",
  106. }