本文整理了Java中org.quartz.Trigger.executionComplete()
方法的一些代码示例,展示了Trigger.executionComplete()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Trigger.executionComplete()
方法的具体详情如下:
包路径:org.quartz.Trigger
类名称:Trigger
方法名:executionComplete
[英]This method should not be used by the Quartz client.
Called after the Scheduler
has executed the org.quartz.JobDetail
associated with the Trigger
in order to get the final instruction code from the trigger.
[中]Quartz客户端不应使用此方法。
在Scheduler
执行与Trigger
关联的org.quartz.JobDetail
后调用,以便从触发器获取最终指令代码。
代码示例来源:origin: quartz/quartz-all
int instCode = trigger.executionComplete(jec, null);
try {
qs.notifyJobStoreJobVetoed(schdCtxt, trigger, jobDetail, instCode);
instCode = trigger.executionComplete(jec, jobExEx);
} catch (Exception e) {
代码示例来源:origin: com.opensymphony.quartz/com.springsource.org.quartz
int instCode = trigger.executionComplete(jec, null);
try {
qs.notifyJobStoreJobVetoed(schdCtxt, trigger, jobDetail, instCode);
instCode = trigger.executionComplete(jec, jobExEx);
} catch (Exception e) {
内容来源于网络,如有侵权,请联系作者删除!