【发布时间】:2016-10-25 09:19:14
【问题描述】:
我需要在每个月的第一天安排一个任务。到目前为止,我一直在使用这个:
system.scheduler.schedule(0.microseconds, 30.days, schedulerActor, "update")
但正如您可能已经猜到的那样,这有时会导致任务每月运行两次(三月)或一个月不运行(二月)。有没有更好的方法使用 Akka Scheduler 来安排每个月的第一天的任务?
【问题讨论】:
标签: scala akka scheduled-tasks