Scheduler
Loading

Scheduler

Sometimes the need for making things happen in the future arises, and where do you go look then? Look no further than ActorSystem! There you find the scheduler method that returns an instance of akka.actor.Scheduler, this instance is unique per ActorSystem and is used internally for scheduling things to happen at specific points in time.

You can schedule sending of messages to actors and execution of tasks (functions or Runnable). You will get a Cancellable back that you can call cancel on to cancel the execution of the scheduled operation.

Warning

The default implementation of Scheduler used by Akka is based on job buckets which are emptied according to a fixed schedule. It does not execute tasks at the exact time, but on every tick, it will run everything that is (over)due. The accuracy of the default Scheduler can be modified by the akka.scheduler.tick-duration configuration property.

Some examples

Schedule to send the "foo"-message to the testActor after 50ms:

  1. import akka.actor.Props;
  2. import scala.concurrent.duration.Duration;
  3. import java.util.concurrent.TimeUnit;
  1. system.scheduler().scheduleOnce(Duration.create(50, TimeUnit.MILLISECONDS),
  2. testActor, "foo", system.dispatcher(), null);

Schedule a Runnable, that sends the current time to the testActor, to be executed after 50ms:

  1. system.scheduler().scheduleOnce(Duration.create(50, TimeUnit.MILLISECONDS),
  2. new Runnable() {
  3. @Override
  4. public void run() {
  5. testActor.tell(System.currentTimeMillis(), ActorRef.noSender());
  6. }
  7. }, system.dispatcher());

Warning

If you schedule Runnable instances you should be extra careful to not pass or close over unstable references. In practice this means that you should not call methods on the enclosing Actor from within the Runnable. If you need to schedule an invocation it is better to use the schedule() variant accepting a message and an ActorRef to schedule a message to self (containing the necessary parameters) and then call the method when the message is received.

Schedule to send the "Tick"-message to the tickActor after 0ms repeating every 50ms:

  1. import akka.actor.Props;
  2. import scala.concurrent.duration.Duration;
  3. import java.util.concurrent.TimeUnit;
  4. import akka.actor.UntypedActor;
  5. import akka.actor.Cancellable;
  1. class Ticker extends UntypedActor {
  2. @Override
  3. public void onReceive(Object message) {
  4. if (message.equals("Tick")) {
  5. // Do someting
  6. } else {
  7. unhandled(message);
  8. }
  9. }
  10. }
  11.  
  12. ActorRef tickActor = system.actorOf(Props.create(Ticker.class, this));
  13.  
  14. //This will schedule to send the Tick-message
  15. //to the tickActor after 0ms repeating every 50ms
  16. Cancellable cancellable = system.scheduler().schedule(Duration.Zero(),
  17. Duration.create(50, TimeUnit.MILLISECONDS), tickActor, "Tick",
  18. system.dispatcher(), null);
  19.  
  20. //This cancels further Ticks to be sent
  21. cancellable.cancel();

From akka.actor.ActorSystem

  1. /**
  2. * Light-weight scheduler for running asynchronous tasks after some deadline
  3. * in the future. Not terribly precise but cheap.
  4. */
  5. def scheduler: Scheduler

The Scheduler Interface for Implementors

The actual scheduler implementation is loaded reflectively upon ActorSystem start-up, which means that it is possible to provide a different one using the akka.scheduler.implementation configuration property. The referenced class must implement the following interface:

  1. /**
  2. * An Akka scheduler service. This one needs one special behavior: if
  3. * Closeable, it MUST execute all outstanding tasks upon .close() in order
  4. * to properly shutdown all dispatchers.
  5. *
  6. * Furthermore, this timer service MUST throw IllegalStateException if it
  7. * cannot schedule a task. Once scheduled, the task MUST be executed. If
  8. * executed upon close(), the task may execute before its timeout.
  9. *
  10. * Scheduler implementation are loaded reflectively at ActorSystem start-up
  11. * with the following constructor arguments:
  12. * 1) the system’s com.typesafe.config.Config (from system.settings.config)
  13. * 2) a akka.event.LoggingAdapter
  14. * 3) a java.util.concurrent.ThreadFactory
  15. */
  16. public abstract class AbstractScheduler extends AbstractSchedulerBase {
  17.  
  18. /**
  19. * Schedules a function to be run repeatedly with an initial delay and
  20. * a frequency. E.g. if you would like the function to be run after 2
  21. * seconds and thereafter every 100ms you would set delay = Duration(2,
  22. * TimeUnit.SECONDS) and interval = Duration(100, TimeUnit.MILLISECONDS)
  23. */
  24. @Override
  25. public abstract Cancellable schedule(FiniteDuration initialDelay,
  26. FiniteDuration interval, Runnable runnable, ExecutionContext executor);
  27.  
  28. /**
  29. * Schedules a Runnable to be run once with a delay, i.e. a time period that
  30. * has to pass before the runnable is executed.
  31. */
  32. @Override
  33. public abstract Cancellable scheduleOnce(FiniteDuration delay, Runnable runnable,
  34. ExecutionContext executor);
  35.  
  36. /**
  37. * The maximum supported task frequency of this scheduler, i.e. the inverse
  38. * of the minimum time interval between executions of a recurring task, in Hz.
  39. */
  40. @Override
  41. public abstract double maxFrequency();
  42. }

The Cancellable interface

Scheduling a task will result in a Cancellable (or throw an IllegalStateException if attempted after the scheduler’s shutdown). This allows you to cancel something that has been scheduled for execution.

Warning

This does not abort the execution of the task, if it had already been started. Check the return value of cancel to detect whether the scheduled task was canceled or will (eventually) have run.

  1. /**
  2. * Signifies something that can be cancelled
  3. * There is no strict guarantee that the implementation is thread-safe,
  4. * but it should be good practice to make it so.
  5. */
  6. trait Cancellable {
  7. /**
  8. * Cancels this Cancellable and returns true if that was successful.
  9. * If this cancellable was (concurrently) cancelled already, then this method
  10. * will return false although isCancelled will return true.
  11. *
  12. * Java & Scala API
  13. */
  14. def cancel(): Boolean
  15.  
  16. /**
  17. * Returns true if and only if this Cancellable has been successfully cancelled
  18. *
  19. * Java & Scala API
  20. */
  21. def isCancelled: Boolean
  22. }