Class LightArrayRevolverScheduler
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Scheduler
Also noteworthy is that this scheduler does not obtain a current time stamp when scheduling single-shot tasks, instead it always rounds up the task delay to a full multiple of the TickDuration. This means that tasks are scheduled possibly one tick later than they could be (if checking that “now() + delay <= nextTick” were done).
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static class
INTERNAL APIstatic interface
INTERNAL APINested classes/interfaces inherited from interface org.apache.pekko.actor.Scheduler
Scheduler.AtomicCancellable, Scheduler.TaskRunOnClose
-
Constructor Summary
ConstructorsConstructorDescriptionLightArrayRevolverScheduler
(com.typesafe.config.Config config, LoggingAdapter log, ThreadFactory threadFactory) -
Method Summary
Modifier and TypeMethodDescriptionprotected long
clock()
Clock implementation is replaceable (for testing); the implementation must return a monotonically increasing series of Long nanoseconds.void
close()
protected scala.concurrent.duration.FiniteDuration
Overridable for testsdouble
The maximum supported task frequency of this scheduler, i.e.protected Cancellable
schedule
(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration delay, Runnable runnable, scala.concurrent.ExecutionContext executor) 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.scheduleWithFixedDelay
(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration delay, Runnable runnable, scala.concurrent.ExecutionContext executor) Scala API: Schedules aRunnable
to be run repeatedly with an initial delay and a fixeddelay
between subsequent executions.scala.concurrent.duration.FiniteDuration
protected int
Replaceable for testing.scala.concurrent.duration.FiniteDuration
protected void
waitNanos
(long nanos) Overridable for testsint
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.pekko.actor.Scheduler
scheduleAtFixedRate, scheduleAtFixedRate, scheduleAtFixedRate, scheduleAtFixedRate, scheduleAtFixedRate$default$6, scheduleOnce, scheduleOnce, scheduleOnce, scheduleOnce, scheduleOnce$default$5, scheduleWithFixedDelay, scheduleWithFixedDelay, scheduleWithFixedDelay, scheduleWithFixedDelay$default$6
-
Constructor Details
-
LightArrayRevolverScheduler
public LightArrayRevolverScheduler(com.typesafe.config.Config config, LoggingAdapter log, ThreadFactory threadFactory)
-
-
Method Details
-
WheelSize
public int WheelSize() -
TickDuration
public scala.concurrent.duration.FiniteDuration TickDuration() -
ShutdownTimeout
public scala.concurrent.duration.FiniteDuration ShutdownTimeout() -
clock
protected long clock()Clock implementation is replaceable (for testing); the implementation must return a monotonically increasing series of Long nanoseconds. -
startTick
protected int startTick()Replaceable for testing. -
getShutdownTimeout
protected scala.concurrent.duration.FiniteDuration getShutdownTimeout()Overridable for tests -
waitNanos
protected void waitNanos(long nanos) Overridable for tests -
scheduleWithFixedDelay
public Cancellable scheduleWithFixedDelay(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration delay, Runnable runnable, scala.concurrent.ExecutionContext executor) Description copied from interface:Scheduler
Scala API: Schedules aRunnable
to be run repeatedly with an initial delay and a fixeddelay
between subsequent executions. E.g. if you would like the function to be run after 2 seconds and thereafter every 100ms you would setdelay=Duration(2, TimeUnit.SECONDS)
andinterval=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 specifieddelay
.If the
Runnable
throws an exception the repeated scheduling is aborted, i.e. the function will not be invoked any more.- Specified by:
scheduleWithFixedDelay
in interfaceScheduler
-
schedule
protected Cancellable schedule(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration delay, Runnable runnable, scala.concurrent.ExecutionContext executor) -
scheduleOnce
public Cancellable scheduleOnce(scala.concurrent.duration.FiniteDuration delay, Runnable runnable, scala.concurrent.ExecutionContext executor) Description copied from interface:Scheduler
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.- Specified by:
scheduleOnce
in interfaceScheduler
-
close
public void close()- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
-
maxFrequency
public double maxFrequency()Description copied from interface:Scheduler
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.- Specified by:
maxFrequency
in interfaceScheduler
-