// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v5.29.1 // source: debug.proto package pb import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" emptypb "google.golang.org/protobuf/types/known/emptypb" ) // 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.64.0 or later. const _ = grpc.SupportPackageIsVersion9 const ( Api_GetHeap_FullMethodName = "/debug.api/GetHeap" Api_GetHeapGraph_FullMethodName = "/debug.api/GetHeapGraph" Api_GetCpuGraph_FullMethodName = "/debug.api/GetCpuGraph" Api_GetCpu_FullMethodName = "/debug.api/GetCpu" ) // ApiClient is the client API for Api 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 ApiClient interface { GetHeap(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*HeapResponse, error) GetHeapGraph(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*HeapGraphResponse, error) GetCpuGraph(ctx context.Context, in *CpuRequest, opts ...grpc.CallOption) (*CpuGraphResponse, error) GetCpu(ctx context.Context, in *CpuRequest, opts ...grpc.CallOption) (*CpuResponse, error) } type apiClient struct { cc grpc.ClientConnInterface } func NewApiClient(cc grpc.ClientConnInterface) ApiClient { return &apiClient{cc} } func (c *apiClient) GetHeap(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*HeapResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(HeapResponse) err := c.cc.Invoke(ctx, Api_GetHeap_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *apiClient) GetHeapGraph(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*HeapGraphResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(HeapGraphResponse) err := c.cc.Invoke(ctx, Api_GetHeapGraph_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *apiClient) GetCpuGraph(ctx context.Context, in *CpuRequest, opts ...grpc.CallOption) (*CpuGraphResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(CpuGraphResponse) err := c.cc.Invoke(ctx, Api_GetCpuGraph_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *apiClient) GetCpu(ctx context.Context, in *CpuRequest, opts ...grpc.CallOption) (*CpuResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(CpuResponse) err := c.cc.Invoke(ctx, Api_GetCpu_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } // ApiServer is the server API for Api service. // All implementations must embed UnimplementedApiServer // for forward compatibility. type ApiServer interface { GetHeap(context.Context, *emptypb.Empty) (*HeapResponse, error) GetHeapGraph(context.Context, *emptypb.Empty) (*HeapGraphResponse, error) GetCpuGraph(context.Context, *CpuRequest) (*CpuGraphResponse, error) GetCpu(context.Context, *CpuRequest) (*CpuResponse, error) mustEmbedUnimplementedApiServer() } // UnimplementedApiServer must be embedded to have // forward compatible implementations. // // NOTE: this should be embedded by value instead of pointer to avoid a nil // pointer dereference when methods are called. type UnimplementedApiServer struct{} func (UnimplementedApiServer) GetHeap(context.Context, *emptypb.Empty) (*HeapResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetHeap not implemented") } func (UnimplementedApiServer) GetHeapGraph(context.Context, *emptypb.Empty) (*HeapGraphResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetHeapGraph not implemented") } func (UnimplementedApiServer) GetCpuGraph(context.Context, *CpuRequest) (*CpuGraphResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetCpuGraph not implemented") } func (UnimplementedApiServer) GetCpu(context.Context, *CpuRequest) (*CpuResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetCpu not implemented") } func (UnimplementedApiServer) mustEmbedUnimplementedApiServer() {} func (UnimplementedApiServer) testEmbeddedByValue() {} // UnsafeApiServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to ApiServer will // result in compilation errors. type UnsafeApiServer interface { mustEmbedUnimplementedApiServer() } func RegisterApiServer(s grpc.ServiceRegistrar, srv ApiServer) { // If the following call pancis, it indicates UnimplementedApiServer was // embedded by pointer and is nil. This will cause panics if an // unimplemented method is ever invoked, so we test this at initialization // time to prevent it from happening at runtime later due to I/O. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok { t.testEmbeddedByValue() } s.RegisterService(&Api_ServiceDesc, srv) } func _Api_GetHeap_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(emptypb.Empty) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ApiServer).GetHeap(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: Api_GetHeap_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ApiServer).GetHeap(ctx, req.(*emptypb.Empty)) } return interceptor(ctx, in, info, handler) } func _Api_GetHeapGraph_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(emptypb.Empty) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ApiServer).GetHeapGraph(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: Api_GetHeapGraph_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ApiServer).GetHeapGraph(ctx, req.(*emptypb.Empty)) } return interceptor(ctx, in, info, handler) } func _Api_GetCpuGraph_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CpuRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ApiServer).GetCpuGraph(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: Api_GetCpuGraph_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ApiServer).GetCpuGraph(ctx, req.(*CpuRequest)) } return interceptor(ctx, in, info, handler) } func _Api_GetCpu_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CpuRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ApiServer).GetCpu(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: Api_GetCpu_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ApiServer).GetCpu(ctx, req.(*CpuRequest)) } return interceptor(ctx, in, info, handler) } // Api_ServiceDesc is the grpc.ServiceDesc for Api service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var Api_ServiceDesc = grpc.ServiceDesc{ ServiceName: "debug.api", HandlerType: (*ApiServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "GetHeap", Handler: _Api_GetHeap_Handler, }, { MethodName: "GetHeapGraph", Handler: _Api_GetHeapGraph_Handler, }, { MethodName: "GetCpuGraph", Handler: _Api_GetCpuGraph_Handler, }, { MethodName: "GetCpu", Handler: _Api_GetCpu_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "debug.proto", }