A Callback implementation for the backoffStrategy
property which
will exponentially backoff the period between re-executions in the case of
a failure.
A Callback implementation for the backoffStrategy
property which
will exponentially backoff the period between re-executions in the case of
a failure. This computation takes the original period and the number of
consecutive failures and computes the backoff amount from that information.
It delegates to JavaFX EXPONENTIAL_BACKOFF_STRATEGY
A Callback implementation for the backoffStrategy
property which
will linearly backoff the period between re-executions in the case of
a failure.
A Callback implementation for the backoffStrategy
property which
will linearly backoff the period between re-executions in the case of
a failure. This computation takes the original period and the number of
consecutive failures and computes the backoff amount from that information.
It delegates to JavaFX LINEAR_BACKOFF_STRATEGY
A Callback implementation for the backoffStrategy
property which
will logarithmically backoff the period between re-executions in the case of
a failure.
A Callback implementation for the backoffStrategy
property which
will logarithmically backoff the period between re-executions in the case of
a failure. This computation takes the original period and the number of
consecutive failures and computes the backoff amount from that information.
It delegates to JavaFX LOGARITHMIC_BACKOFF_STRATEGY
Create a new scalafx.concurrent.ScheduledService with a operation to be invoked after this was started on the JavaFX Application Thread.
Create a new scalafx.concurrent.ScheduledService with a operation to be invoked after this was started on the JavaFX Application Thread.
scala.Function that returns a scalafx.concurrent.Task to be invoked after this was started on the JavaFX Application Thread.