Configure a CronString for a BiWeekly job in Quart

2019-02-26 05:14发布

How can I configure a CronString for Quartz.Net job scheduler for the following job:

Job should run on BiWeekly on Monday at 12:00 AM. i.e. it should run on every Monday but skipping one week in between.

Example:

1st Run => 19-Nov-2012 [Monday] 12:00 AM
2nd Run => 03-Dec-2012 [Monday] 12:00 AM
3rd Run => 17-Dec-2012 [Monday] 12:00 AM

2条回答
smile是对你的礼貌
2楼-- · 2019-02-26 05:41

A "cron expresssion" can be created as follows for any frequency of the week.

int repeatInterval = 2;
int weeklyInterval = repeatInterval*7;
String cronExp="0 0 12 1/ " +weeklyInterval " * ? *";

Creates a cron expression which repeats bi-weekly at 12.

Hope this helps.

查看更多
对你真心纯属浪费
3楼-- · 2019-02-26 05:45

Actually what you might be looking for is CalenderIntervalTrigger, which is capable to do this easily.

var trigger = TriggerBuilder.Create()
    .StartAt(new DateTime(2012, 11, 19, 12, 0, 0).ToUniversalTime())
    .WithCalendarIntervalSchedule(x => x.WithIntervalInWeeks(2))
    .Build();
查看更多
登录 后发表回答