Uses of Interface
org.reactfx.util.Timer
-
Packages that use Timer Package Description org.reactfx org.reactfx.util -
-
Uses of Timer in org.reactfx
Classes in org.reactfx that implement Timer Modifier and Type Class Description (package private) class
ScheduledExecutorServiceTimer
Fields in org.reactfx declared as Timer Modifier and Type Field Description private Timer
SuccessionReducingStream. timer
private Timer
ThenAccumulateForStream. timer
Methods in org.reactfx that return Timer Modifier and Type Method Description static Timer
ScheduledExecutorServiceTimer. create(java.time.Duration timeout, java.lang.Runnable action, java.util.concurrent.ScheduledExecutorService scheduler, java.util.concurrent.Executor eventThreadExecutor)
static Timer
ScheduledExecutorServiceTimer. createPeriodic(java.time.Duration timeout, java.lang.Runnable action, java.util.concurrent.ScheduledExecutorService scheduler, java.util.concurrent.Executor eventThreadExecutor)
-
Uses of Timer in org.reactfx.util
Classes in org.reactfx.util that implement Timer Modifier and Type Class Description class
FxTimer
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 Timer Modifier and Type Method Description static Timer
FxTimer. create(java.time.Duration delay, java.lang.Runnable action)
Prepares a (stopped) timer that lasts fordelay
and whose action runs when timer ends.static Timer
FxTimer. createPeriodic(java.time.Duration interval, java.lang.Runnable action)
Prepares a (stopped) timer that lasts forinterval
and that executes the given action periodically when the timer ends.static Timer
FxTimer. createPeriodic0(java.time.Duration interval, java.lang.Runnable action)
Prepares a (stopped) timer that lasts forinterval
and that executes the given action periodically when the timer starts.static Timer
FxTimer. runLater(java.time.Duration delay, java.lang.Runnable action)
Equivalent tocreate(delay, action).restart()
.static Timer
FxTimer. runPeriodically(java.time.Duration interval, java.lang.Runnable action)
Equivalent tocreatePeriodic(interval, action).restart()
.static Timer
FxTimer. runPeriodically0(java.time.Duration interval, java.lang.Runnable action)
Equivalent tocreatePeriodic0(interval, action).restart()
.
-