为这些用例定义节点议程作业

时间:2015-06-23 07:36:47

标签: angularjs node.js date jobs job-scheduling

您好我正在使用节点议程在我的应用中定义作业(https://github.com/rschmukler/agenda)。我有两个用例,我不知道如何覆盖

1)我希望工作每周二或每周三运行

2)我希望这个工作每个月的5号或10号运行。

我知道节点议程使用人工间隔(https://github.com/rschmukler/human-interval)来解释他们想要运行作业的频率,但我发现它只能解释天,周,月等单位。我如何能够涵盖上面提到的两个用例?

对于用例1,我发现我可以做这样的事情(来自议程文档):

var weeklyReport = agenda.schedule('Saturday at noon', 'send email report', {to: 'another-guy@example.com'});
weeklyReport.repeatEvery('1 week').save();
agenda.start();

1 个答案:

答案 0 :(得分:4)

You can use cron format: 1) weeklyReport.repeatEvery( "0 0 * * 1,4") Where 1 is Monday and 4 is Thursday 2) weeklyReport.repeatEvery("0 0 1,15 * *") This will run on the 1st and 15th of the month