Package akka.actor
Class LightArrayRevolverScheduler
- java.lang.Object
-
- akka.actor.LightArrayRevolverScheduler
-
- All Implemented Interfaces:
Scheduler,java.io.Closeable,java.lang.AutoCloseable
public class LightArrayRevolverScheduler extends java.lang.Object implements Scheduler, java.io.Closeable
Clock implementation is replaceable (for testing); the implementation must return a monotonically increasing series of Long nanoseconds.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classLightArrayRevolverScheduler.TaskHolderstatic interfaceLightArrayRevolverScheduler.TimerTask
-
Constructor Summary
Constructors Constructor Description LightArrayRevolverScheduler(com.typesafe.config.Config config, LoggingAdapter log, java.util.concurrent.ThreadFactory threadFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected longclock()Clock implementation is replaceable (for testing); the implementation must return a monotonically increasing series of Long nanoseconds.voidclose()protected scala.concurrent.duration.FiniteDurationgetShutdownTimeout()Overridable for testsdoublemaxFrequency()The maximum supported task frequency of this scheduler, i.e.Cancellableschedule(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration delay, java.lang.Runnable runnable, scala.concurrent.ExecutionContext executor)Schedules aRunnableto be run repeatedly with an initial delay and a frequency.CancellablescheduleOnce(scala.concurrent.duration.FiniteDuration delay, java.lang.Runnable runnable, scala.concurrent.ExecutionContext executor)Schedules a Runnable to be run once with a delay, i.e.scala.concurrent.duration.FiniteDurationShutdownTimeout()protected intstartTick()Replaceable for testing.scala.concurrent.duration.FiniteDurationTickDuration()protected voidwaitNanos(long nanos)Overridable for testsintWheelSize()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface akka.actor.Scheduler
schedule, schedule, schedule, schedule, schedule$default$6, scheduleOnce, scheduleOnce, scheduleOnce, scheduleOnce, scheduleOnce$default$5
-
-
-
-
Constructor Detail
-
LightArrayRevolverScheduler
public LightArrayRevolverScheduler(com.typesafe.config.Config config, LoggingAdapter log, java.util.concurrent.ThreadFactory threadFactory)
-
-
Method Detail
-
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.- Returns:
- (undocumented)
-
startTick
protected int startTick()
Replaceable for testing.- Returns:
- (undocumented)
-
getShutdownTimeout
protected scala.concurrent.duration.FiniteDuration getShutdownTimeout()
Overridable for tests- Returns:
- (undocumented)
-
waitNanos
protected void waitNanos(long nanos)
Overridable for tests- Parameters:
nanos- (undocumented)
-
schedule
public Cancellable schedule(scala.concurrent.duration.FiniteDuration initialDelay, scala.concurrent.duration.FiniteDuration delay, java.lang.Runnable runnable, scala.concurrent.ExecutionContext executor)
Description copied from interface:SchedulerSchedules aRunnableto 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). If the execution of the runnable takes longer than the interval, the subsequent execution will start immediately after the prior one completes (there will be no overlap of executions of the runnable). In such cases, the actual execution interval will differ from the interval passed to this method.If the
Runnablethrows an exception the repeated scheduling is aborted, i.e. the function will not be invoked any more.
-
scheduleOnce
public Cancellable scheduleOnce(scala.concurrent.duration.FiniteDuration delay, java.lang.Runnable runnable, scala.concurrent.ExecutionContext executor)
Description copied from interface:SchedulerSchedules 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:
scheduleOncein interfaceScheduler- Parameters:
delay- (undocumented)runnable- (undocumented)executor- (undocumented)- Returns:
- (undocumented)
-
close
public void close()
- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable
-
maxFrequency
public double maxFrequency()
Description copied from interface:SchedulerThe 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:
maxFrequencyin interfaceScheduler- Returns:
- (undocumented)
-
-