我想保留由Quartz调度程序安排的作业历史记录,其中包含以下属性:“开始时间”,“结束时间”,“成功”,“错误”.
有两个可用的接口:ITriggerListener和IJobListener(我使用C#命名约定的接口,因为我使用Quartz.NET,但是可以问相同的问题的Java版本).
IJobListener有一个JobToBeExecuted和一个JobWasExecuted方法.后者提供了一个JobExecutionException,以便您知道何时发生错误.但是,没有办法将JobToBeExecuted和JobWasExecuted进行关联.假设我的工作运行了十分钟.我在t0和t0 2开始(所以它们重叠).我收到JobToBeExecuted的两个调用,并将两个开始时间插入到我的历史记录表中.当两个作业在t1和t1 2完成时,我得到JobWasExecuted的两个调用.如何知道每次呼叫中要更新的数据库记录(存储结束时间及其相应的开始时间)?
ITriggerListener还有另一个问题.当作业失败时,无法在TriggerComplete方法内获取任何错误.
如何获得所需的行为?
解决方法
执行此操作的方法是在JobToBeExecuted中生成标识符,将其存储在JobExecutionContext中,并从JobWasExecuted中的JobExecutionContext重新检索.
public void JobToBeExecuted(JobExecutionContext context) { // Insert history record and retrieve primary key of inserted record. long historyId = InsertHistoryRecord(...); context.Put("HistoryIdKey",historyId); } public void JobWasExecuted(JobExecutionContext context,JobExecutionException jobException) { // Retrieve history id from context and update history record. long historyId = (long) context.Get("HistoryIdKey"); UpdateHistoryRecord(historyId,...); }