在我使用 [cron] [1] 后,我有一个APP。 我开始我的cron工作:
this.timer = new CronJob('25 * * * * *', callback, null, true, null);
在我这样做之后,我想用新的 CronJob 覆盖this.timer,但持续时间不同:
this.timer = new CronJob('50 * * * * *', callback, null, true, null);
这样安全吗?
有谁知道并且可以解释停止当前CronJob并启动新的CronJob的最佳做法?
更新
最好使用setTimeout()和clearTimeout()?