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.
JobListener 的 jobExecutionVetoed 什么时候会在 Quartz Scheduler 中执行??jobExecutionVetoed 方法有什么用??
假设我们有工作 J 并触发 T。
我们在 TriggerListener vetoJobExecution() 中有一个方法。此方法在触发器刚刚触发时执行。因此,我们可以借此控制是执行还是关闭与触发器关联的作业。如果我们想解雇这个工作,那么我们应该从这个方法中返回 true。
一旦我们从这个方法返回,我们的joblistener中的“jobExecutionVetoed()”方法将被执行,以暗示该作业执行已被禁止(否决)。