Uses of Class
javafx.concurrent.ScheduledService
-
Uses of ScheduledService in javafx.concurrent
Modifier and TypeFieldDescriptionstatic final Callback
<ScheduledService<?>, Duration> ScheduledService.EXPONENTIAL_BACKOFF_STRATEGY
A Callback implementation for thebackoffStrategy
property which will exponentially backoff the period between re-executions in the case of a failure.static final Callback
<ScheduledService<?>, Duration> ScheduledService.LINEAR_BACKOFF_STRATEGY
A Callback implementation for thebackoffStrategy
property which will linearly backoff the period between re-executions in the case of a failure.static final Callback
<ScheduledService<?>, Duration> ScheduledService.LOGARITHMIC_BACKOFF_STRATEGY
A Callback implementation for thebackoffStrategy
property which will logarithmically backoff the period between re-executions in the case of a failure.Modifier and TypeMethodDescriptionfinal ObjectProperty
<Callback<ScheduledService<?>, Duration>> ScheduledService.backoffStrategyProperty()
Computes the amount of time to add to the period on each failure.final Callback
<ScheduledService<?>, Duration> ScheduledService.getBackoffStrategy()
Gets the value of thebackoffStrategy
property.Modifier and TypeMethodDescriptionfinal void
ScheduledService.setBackoffStrategy
(Callback<ScheduledService<?>, Duration> value) Sets the value of thebackoffStrategy
property.