我正在编写MVC 5互联网应用程序并使用HangFire
进行重复性任务。
如果我有每月定期任务,我怎样才能获得下一个执行时间的值?
以下是重复任务的代码:
RecurringJob.AddOrUpdate("AccountMonthlyActionExtendPaymentSubscription", () => accountService.AccountMonthlyActionExtendPaymentSubscription(), Cron.Monthly);
我可以按如下方式检索作业数据:
using (var connection = JobStorage.Current.GetConnection())
{
var recurringJob = connection.GetJobData("AccountMonthlyActionExtendPaymentSubscription");
}
但是,我不确定下一步该做什么。
是否可以获得定期任务的下一个执行时间?
提前致谢。
答案 0 :(得分:14)
你很亲密。我不确定是否有更好或更直接的方式来获取这些详细信息,但Hangfire Dashboard执行此操作的方式是使用名为{{1}的扩展方法(将using Hangfire.Storage;
添加到您的导入中) }:
GetRecurringJobs()
有两次捕获:
using (var connection = JobStorage.Current.GetConnection())
{
var recurring = connection.GetRecurringJobs().FirstOrDefault(p => p.Id == "AccountMonthlyActionExtendPaymentSubscription");
if (recurring == null)
{
// recurring job not found
Console.WriteLine("Job has not been created yet.");
}
else if (!recurring.NextExecution.HasValue)
{
// server has not had a chance yet to schedule the job's next execution time, I think.
Console.WriteLine("Job has not been scheduled yet. Check again later.");
}
else
{
Console.WriteLine("Job is scheduled to execute at {0}.", recurring.NextExecution);
}
}
时间尚不可用(它将为空)。我相信一旦连接,服务器会定期检查需要安排的重复任务,并且这样做;它们似乎在使用NextExecution
或其他类似方法创建时不会立即安排。如果你需要在创建后立即获得RecurringJob.AddOrUpdate(...)
值,我不确定你能做什么。但最终会填充它。