Interface Scheduler

All Known Implementing Classes:
AbstractScheduler, AbstractSchedulerBase, ExplicitlyTriggeredScheduler, LightArrayRevolverScheduler

public interface Scheduler
An Apache Pekko scheduler service.

For scheduling within actors with Timers should be preferred.

Please note that this scheduler implementation is highly optimised for high-throughput and high-frequency events. It is not to be confused with long-term schedulers such as Quartz. The scheduler will throw an exception if attempts are made to schedule too far into the future (which by default is around 8 months (Int.MaxValue seconds).

It's possible to implement a custom Scheduler, although that should rarely be needed.

A Scheduler implementation needs one special behavior: if Closeable, it MUST execute all outstanding tasks that implement Scheduler.TaskRunOnClose upon .close() in order to properly shutdown all dispatchers.

Furthermore, this timer service MUST throw IllegalStateException if it cannot schedule a task. Once scheduled, the task MUST be executed. If executed upon close(), the task may execute before its timeout.

Scheduler implementation are loaded reflectively at ActorSystem start-up with the following constructor arguments: 1) the system’s com.typesafe.config.Config (from system.settings.config) 2) a org.apache.pekko.event.LoggingAdapter 3) a java.util.concurrent.ThreadFactory

  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static class 
    INTERNAL API
    static interface 
    If a TaskRunOnClose is used in scheduleOnce it will be run when the Scheduler is closed (ActorSystem shutdown).
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    The maximum supported task frequency of this scheduler, i.e.
    schedule(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration interval, Runnable runnable, scala.concurrent.ExecutionContext executor)
     
    scheduleAtFixedRate(Duration initialDelay, Duration interval, Runnable runnable, scala.concurrent.ExecutionContext executor)
    Java API: Schedules a Runnable to be run repeatedly with an initial delay and a frequency.
    scheduleAtFixedRate(Duration initialDelay, Duration interval, ActorRef receiver, Object message, scala.concurrent.ExecutionContext executor, ActorRef sender)
    Java API: Schedules a message to be sent repeatedly with an initial delay and frequency.
    scheduleAtFixedRate(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration interval, Runnable runnable, scala.concurrent.ExecutionContext executor)
    Scala API: Schedules a Runnable to be run repeatedly with an initial delay and a frequency.
    scheduleAtFixedRate(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration interval, ActorRef receiver, Object message, scala.concurrent.ExecutionContext executor, ActorRef sender)
    Scala API: Schedules a message to be sent repeatedly with an initial delay and frequency.
    scheduleAtFixedRate$default$6(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration interval, ActorRef receiver, Object message)
    Scala API: Schedules a message to be sent repeatedly with an initial delay and frequency.
    scheduleOnce(Duration delay, Runnable runnable, scala.concurrent.ExecutionContext executor)
    Java API: Schedules a Runnable to be run once with a delay, i.e.
    scheduleOnce(Duration delay, ActorRef receiver, Object message, scala.concurrent.ExecutionContext executor, ActorRef sender)
    Java API: Schedules a message to be sent once with a delay, i.e.
    scheduleOnce(scala.concurrent.duration.FiniteDuration delay, Runnable runnable, scala.concurrent.ExecutionContext executor)
    Scala API: Schedules a Runnable to be run once with a delay, i.e.
    scheduleOnce(scala.concurrent.duration.FiniteDuration delay, ActorRef receiver, Object message, scala.concurrent.ExecutionContext executor, ActorRef sender)
    Scala API: Schedules a message to be sent once with a delay, i.e.
    scheduleOnce(scala.concurrent.duration.FiniteDuration delay, scala.Function0<scala.runtime.BoxedUnit> f, scala.concurrent.ExecutionContext executor)
    Scala API: Schedules a function to be run once with a delay, i.e.
    scheduleOnce$default$5(scala.concurrent.duration.FiniteDuration delay, ActorRef receiver, Object message)
     
    scheduleWithFixedDelay(Duration initialDelay, Duration delay, Runnable runnable, scala.concurrent.ExecutionContext executor)
    Java API: Schedules a Runnable to be run repeatedly with an initial delay and a fixed delay between subsequent executions.
    scheduleWithFixedDelay(Duration initialDelay, Duration delay, ActorRef receiver, Object message, scala.concurrent.ExecutionContext executor, ActorRef sender)
    Java API: Schedules a message to be sent repeatedly with an initial delay and a fixed delay between messages.
    scheduleWithFixedDelay(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration delay, Runnable runnable, scala.concurrent.ExecutionContext executor)
    Scala API: Schedules a Runnable to be run repeatedly with an initial delay and a fixed delay between subsequent executions.
    scheduleWithFixedDelay(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration delay, ActorRef receiver, Object message, scala.concurrent.ExecutionContext executor, ActorRef sender)
    Scala API: Schedules a message to be sent repeatedly with an initial delay and a fixed delay between messages.
    scheduleWithFixedDelay$default$6(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration delay, ActorRef receiver, Object message)
     
  • Method Details

    • scheduleWithFixedDelay

      Cancellable scheduleWithFixedDelay(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration delay, Runnable runnable, scala.concurrent.ExecutionContext executor)
      Scala API: Schedules a Runnable to be run repeatedly with an initial delay and a fixed delay between subsequent executions. E.g. if you would like the function to be run after 2 seconds and thereafter every 100ms you would set delay=Duration(2, TimeUnit.SECONDS) and interval=Duration(100, TimeUnit.MILLISECONDS).

      It will not compensate the delay between tasks if the execution takes a long time or if scheduling is delayed longer than specified for some reason. The delay between subsequent execution will always be (at least) the given delay. In the long run, the frequency of execution will generally be slightly lower than the reciprocal of the specified delay.

      If the Runnable throws an exception the repeated scheduling is aborted, i.e. the function will not be invoked any more.

      Throws:
      IllegalArgumentException - if the given delays is zero, negative or exceed the maximum reach (calculated as: delay / tickNanos > Int.MaxValue).

      Note: For scheduling within actors with Timers should be preferred.

    • scheduleWithFixedDelay

      Cancellable scheduleWithFixedDelay(Duration initialDelay, Duration delay, Runnable runnable, scala.concurrent.ExecutionContext executor)
      Java API: Schedules a Runnable to be run repeatedly with an initial delay and a fixed delay between subsequent executions. E.g. if you would like the function to be run after 2 seconds and thereafter every 100ms you would set delay to Duration.ofSeconds(2), and interval to Duration.ofMillis(100).

      It will not compensate the delay between tasks if the execution takes a long time or if scheduling is delayed longer than specified for some reason. The delay between subsequent execution will always be (at least) the given delay.

      In the long run, the frequency of tasks will generally be slightly lower than the reciprocal of the specified delay.

      If the Runnable throws an exception the repeated scheduling is aborted, i.e. the function will not be invoked any more.

      Throws:
      IllegalArgumentException - if the given delays is zero, negative or exceed the maximum reach (calculated as: delay / tickNanos > Int.MaxValue).

      Note: For scheduling within actors AbstractActorWithTimers should be preferred.

    • scheduleWithFixedDelay

      Cancellable scheduleWithFixedDelay(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration delay, ActorRef receiver, Object message, scala.concurrent.ExecutionContext executor, ActorRef sender)
      Scala API: Schedules a message to be sent repeatedly with an initial delay and a fixed delay between messages. E.g. if you would like a message to be sent immediately and thereafter every 500ms you would set delay=Duration.Zero and interval=Duration(500, TimeUnit.MILLISECONDS).

      It will not compensate the delay between messages if scheduling is delayed longer than specified for some reason. The delay between sending of subsequent messages will always be (at least) the given delay.

      In the long run, the frequency of messages will generally be slightly lower than the reciprocal of the specified delay.

      Note: For scheduling within actors with Timers should be preferred.

    • scheduleWithFixedDelay

      Cancellable scheduleWithFixedDelay(Duration initialDelay, Duration delay, ActorRef receiver, Object message, scala.concurrent.ExecutionContext executor, ActorRef sender)
      Java API: Schedules a message to be sent repeatedly with an initial delay and a fixed delay between messages. E.g. if you would like a message to be sent immediately and thereafter every 500ms you would set delay=Duration.ZERO and interval=Duration.ofMillis(500).

      It will not compensate the delay between messages if scheduling is delayed longer than specified for some reason. The delay between sending of subsequent messages will always be (at least) the given delay.

      In the long run, the frequency of messages will generally be slightly lower than the reciprocal of the specified delay.

      Note: For scheduling within actors AbstractActorWithTimers should be preferred.

    • scheduleAtFixedRate

      Cancellable scheduleAtFixedRate(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration interval, Runnable runnable, scala.concurrent.ExecutionContext executor)
      Scala API: Schedules a Runnable to be run repeatedly with an initial delay and a frequency. E.g. if you would like the function to be run after 2 seconds and thereafter every 100ms you would set delay=Duration(2, TimeUnit.SECONDS) and interval=Duration(100, TimeUnit.MILLISECONDS).

      It will compensate the delay for a subsequent task if the previous tasks took too long to execute. In such cases, the actual execution interval will differ from the interval passed to the method.

      If the execution of the tasks takes longer than the interval, the subsequent execution will start immediately after the prior one completes (there will be no overlap of executions). This also has the consequence that after long garbage collection pauses or other reasons when the JVM was suspended all "missed" tasks will execute when the process wakes up again.

      In the long run, the frequency of execution will be exactly the reciprocal of the specified interval.

      Warning: scheduleAtFixedRate can result in bursts of scheduled tasks after long garbage collection pauses, which may in worst case cause undesired load on the system. Therefore scheduleWithFixedDelay is often preferred.

      If the Runnable throws an exception the repeated scheduling is aborted, i.e. the function will not be invoked any more.

      Throws:
      IllegalArgumentException - if the given delays is zero, negative or exceed the maximum reach (calculated as: delay / tickNanos > Int.MaxValue).

      Note: For scheduling within actors with Timers should be preferred.

    • scheduleAtFixedRate

      Cancellable scheduleAtFixedRate(Duration initialDelay, Duration interval, Runnable runnable, scala.concurrent.ExecutionContext executor)
      Java API: Schedules a Runnable to be run repeatedly with an initial delay and a frequency. E.g. if you would like the function to be run after 2 seconds and thereafter every 100ms you would set delay to Duration.ofSeconds(2), and interval to Duration.ofMillis(100).

      It will compensate the delay for a subsequent task if the previous tasks took too long to execute. In such cases, the actual execution interval will differ from the interval passed to the method.

      If the execution of the tasks takes longer than the interval, the subsequent execution will start immediately after the prior one completes (there will be no overlap of executions). This also has the consequence that after long garbage collection pauses or other reasons when the JVM was suspended all "missed" tasks will execute when the process wakes up again.

      In the long run, the frequency of execution will be exactly the reciprocal of the specified interval.

      Warning: scheduleAtFixedRate can result in bursts of scheduled tasks after long garbage collection pauses, which may in worst case cause undesired load on the system. Therefore scheduleWithFixedDelay is often preferred.

      If the Runnable throws an exception the repeated scheduling is aborted, i.e. the function will not be invoked any more.

      Throws:
      IllegalArgumentException - if the given delays is zero, negative or exceed the maximum reach (calculated as: delay / tickNanos > Int.MaxValue).

      Note: For scheduling within actors AbstractActorWithTimers should be preferred.

    • scheduleAtFixedRate

      Cancellable scheduleAtFixedRate(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration interval, ActorRef receiver, Object message, scala.concurrent.ExecutionContext executor, ActorRef sender)
      Scala API: Schedules a message to be sent repeatedly with an initial delay and frequency. E.g. if you would like a message to be sent immediately and thereafter every 500ms you would set delay=Duration.Zero and interval=Duration(500, TimeUnit.MILLISECONDS)

      It will compensate the delay for a subsequent message if the sending of previous message was delayed more than specified. In such cases, the actual message interval will differ from the interval passed to the method.

      If the execution is delayed longer than the interval, the subsequent message will be sent immediately after the prior one. This also has the consequence that after long garbage collection pauses or other reasons when the JVM was suspended all "missed" messages will be sent when the process wakes up again.

      In the long run, the frequency of messages will be exactly the reciprocal of the specified interval.

      Warning: scheduleAtFixedRate can result in bursts of scheduled messages after long garbage collection pauses, which may in worst case cause undesired load on the system. Therefore scheduleWithFixedDelay is often preferred.

      Note: For scheduling within actors with Timers should be preferred.

    • scheduleAtFixedRate

      Cancellable scheduleAtFixedRate(Duration initialDelay, Duration interval, ActorRef receiver, Object message, scala.concurrent.ExecutionContext executor, ActorRef sender)
      Java API: Schedules a message to be sent repeatedly with an initial delay and frequency. E.g. if you would like a message to be sent immediately and thereafter every 500ms you would set delay=Duration.ZERO and interval=Duration.ofMillis(500)

      It will compensate the delay for a subsequent message if the sending of previous message was delayed more than specified. In such cases, the actual message interval will differ from the interval passed to the method.

      If the execution is delayed longer than the interval, the subsequent message will be sent immediately after the prior one. This also has the consequence that after long garbage collection pauses or other reasons when the JVM was suspended all "missed" messages will be sent when the process wakes up again.

      In the long run, the frequency of messages will be exactly the reciprocal of the specified interval.

      Warning: scheduleAtFixedRate can result in bursts of scheduled messages after long garbage collection pauses, which may in worst case cause undesired load on the system. Therefore scheduleWithFixedDelay is often preferred.

      Note: For scheduling within actors AbstractActorWithTimers should be preferred.

    • schedule

      Cancellable schedule(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration interval, Runnable runnable, scala.concurrent.ExecutionContext executor)
    • scheduleWithFixedDelay$default$6

      ActorRef scheduleWithFixedDelay$default$6(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration delay, ActorRef receiver, Object message)
    • scheduleAtFixedRate$default$6

      ActorRef scheduleAtFixedRate$default$6(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration interval, ActorRef receiver, Object message)
      Scala API: Schedules a message to be sent repeatedly with an initial delay and frequency. E.g. if you would like a message to be sent immediately and thereafter every 500ms you would set delay=Duration.Zero and interval=Duration(500, TimeUnit.MILLISECONDS)

      It will compensate the delay for a subsequent message if the sending of previous message was delayed more than specified. In such cases, the actual message interval will differ from the interval passed to the method.

      If the execution is delayed longer than the interval, the subsequent message will be sent immediately after the prior one. This also has the consequence that after long garbage collection pauses or other reasons when the JVM was suspended all "missed" messages will be sent when the process wakes up again.

      In the long run, the frequency of messages will be exactly the reciprocal of the specified interval.

      Warning: scheduleAtFixedRate can result in bursts of scheduled messages after long garbage collection pauses, which may in worst case cause undesired load on the system. Therefore scheduleWithFixedDelay is often preferred.

      Note: For scheduling within actors with Timers should be preferred.

    • scheduleOnce

      Cancellable scheduleOnce(scala.concurrent.duration.FiniteDuration delay, ActorRef receiver, Object message, scala.concurrent.ExecutionContext executor, ActorRef sender)
      Scala API: Schedules a message to be sent once with a delay, i.e. a time period that has to pass before the message is sent.

      Throws:
      IllegalArgumentException - if the given delays is zero, negative or exceed the maximum reach (calculated as: delay / tickNanos > Int.MaxValue).

      Note: For scheduling within actors with Timers should be preferred.

    • scheduleOnce

      Cancellable scheduleOnce(Duration delay, ActorRef receiver, Object message, scala.concurrent.ExecutionContext executor, ActorRef sender)
      Java API: Schedules a message to be sent once with a delay, i.e. a time period that has to pass before the message is sent.

      Throws:
      IllegalArgumentException - if the given delays is zero, negative or exceed the maximum reach (calculated as: delay / tickNanos > Int.MaxValue).

      Note: For scheduling within actors AbstractActorWithTimers should be preferred.

    • scheduleOnce

      Cancellable scheduleOnce(scala.concurrent.duration.FiniteDuration delay, scala.Function0<scala.runtime.BoxedUnit> f, scala.concurrent.ExecutionContext executor)
      Scala API: Schedules a function to be run once with a delay, i.e. a time period that has to pass before the function is run.

      Throws:
      IllegalArgumentException - if the given delays is zero, negative or exceed the maximum reach (calculated as: delay / tickNanos > Int.MaxValue).

      Note: For scheduling within actors with Timers should be preferred.

    • scheduleOnce

      Cancellable scheduleOnce(scala.concurrent.duration.FiniteDuration delay, Runnable runnable, scala.concurrent.ExecutionContext executor)
      Scala API: Schedules a Runnable to be run once with a delay, i.e. a time period that has to pass before the runnable is executed.

      Throws:
      IllegalArgumentException - if the given delays is zero, negative or exceed the maximum reach (calculated as: delay / tickNanos > Int.MaxValue).

      Note: For scheduling within actors with Timers should be preferred.

    • scheduleOnce

      Cancellable scheduleOnce(Duration delay, Runnable runnable, scala.concurrent.ExecutionContext executor)
      Java API: Schedules a Runnable to be run once with a delay, i.e. a time period that has to pass before the runnable is executed.

      Throws:
      IllegalArgumentException - if the given delays is zero, negative or exceed the maximum reach (calculated as: delay / tickNanos > Int.MaxValue).

      Note: For scheduling within actors AbstractActorWithTimers should be preferred.

    • scheduleOnce$default$5

      ActorRef scheduleOnce$default$5(scala.concurrent.duration.FiniteDuration delay, ActorRef receiver, Object message)
    • maxFrequency

      double maxFrequency()
      The maximum supported task frequency of this scheduler, i.e. the inverse of the minimum time interval between executions of a recurring task, in Hz.