Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 cron4j 来管理某些任务的时间安排。我需要能够获得添加到给定调度程序的所有任务的列表。请注意,我关心的不仅仅是当前正在执行的任务。
我试图使用这个:
TaskExecutor[] executingTasks = context.getScheduler().getExecutingTasks();
但这当然似乎只给了我当前正在执行的一项任务,而不是其他 7 个在预定运行时间之前处于休眠状态的任务。
有谁知道如何获取附加到给定调度程序的简单任务列表?