Uses of Interface
org.reactfx.util.Timer
Packages that use Timer
-
Uses of Timer in org.reactfx
Classes in org.reactfx that implement TimerFields in org.reactfx declared as TimerModifier and TypeFieldDescriptionprivate final Timer
SuccessionReducingStream.timer
private final Timer
ThenAccumulateForStream.timer
Methods in org.reactfx that return TimerModifier and TypeMethodDescriptionstatic Timer
ScheduledExecutorServiceTimer.create
(Duration timeout, Runnable action, ScheduledExecutorService scheduler, Executor eventThreadExecutor) static Timer
ScheduledExecutorServiceTimer.createPeriodic
(Duration timeout, Runnable action, ScheduledExecutorService scheduler, Executor eventThreadExecutor) -
Uses of Timer in org.reactfx.util
Classes in org.reactfx.util that implement TimerModifier and TypeClassDescriptionclass
Provides factory methods for timers that are manipulated from and execute their action on the JavaFX application thread.Methods in org.reactfx.util that return TimerModifier and TypeMethodDescriptionstatic Timer
Prepares a (stopped) timer that lasts fordelay
and whose action runs when timer ends.static Timer
FxTimer.createPeriodic
(Duration interval, Runnable action) Prepares a (stopped) timer that lasts forinterval
and that executes the given action periodically when the timer ends.static Timer
FxTimer.createPeriodic0
(Duration interval, Runnable action) Prepares a (stopped) timer that lasts forinterval
and that executes the given action periodically when the timer starts.static Timer
Equivalent tocreate(delay, action).restart()
.static Timer
FxTimer.runPeriodically
(Duration interval, Runnable action) Equivalent tocreatePeriodic(interval, action).restart()
.static Timer
FxTimer.runPeriodically0
(Duration interval, Runnable action) Equivalent tocreatePeriodic0(interval, action).restart()
.