Changes according to review. #2513

This commit is contained in:
Björn Antonsson 2012-10-08 10:52:55 +02:00
parent 99ad1e0eeb
commit c63234ca4c
5 changed files with 50 additions and 50 deletions

View file

@ -123,7 +123,10 @@ message sends to the same actor.
.. note::
With this approach the scheduler will be restarted with the actor on restarts.
With this approach the scheduled periodic message send will be restarted with the actor on restarts.
This also means that the time period that elapses between two tick messages during a restart may drift
off based on when you restart the scheduled message sends relative to the time that the last message was
sent, and how long the initial delay is. Worst case scenario is ``interval`` plus ``initialDelay``.
.. includecode:: code/docs/pattern/SchedulerPatternSpec.scala#schedule-constructor