我正在尝试获取特定组的所有使用 Quartz 调度程序注册的作业。这是我的一段代码
CustomSchdularFactory.getSchedulerInstance().getJobKeys(groupEquals(group));
这group
是一个字符串变量,其中包含我要获取其关联作业的组的名称。在使用上面的代码时,我收到以下错误
The method getJobKeys(GroupMatcher<JobKey>) in the type Scheduler is not applicable for the arguments (GroupMatcher<Key<Key<T>>>)
我不确定为什么会发生此错误,因为我从 Quartz 官方文档中获取了参考