Uses of Class
org.springframework.retry.backoff.BackOffInterruptedException
Package
Description
Infrastructure implementations of retry backoff concerns.
-
Uses of BackOffInterruptedException in org.springframework.retry.backoff
Modifier and TypeMethodDescriptionvoid
BackOffPolicy.backOff
(BackOffContext backOffContext) Back off/pause in an implementation-specific fashion.void
ExponentialBackOffPolicy.backOff
(BackOffContext backOffContext) Pause for the current backoff interval.final void
StatelessBackOffPolicy.backOff
(BackOffContext backOffContext) Delegates directly to theStatelessBackOffPolicy.doBackOff()
method without passing on theBackOffContext
argument which is not needed for stateless implementations.protected void
FixedBackOffPolicy.doBackOff()
Pause for theFixedBackOffPolicy.setBackOffPeriod(long)
.protected void
NoBackOffPolicy.doBackOff()
protected abstract void
StatelessBackOffPolicy.doBackOff()
Sub-classes should implement this method to perform the actual back off.protected void
UniformRandomBackOffPolicy.doBackOff()
Pause for theUniformRandomBackOffPolicy.setMinBackOffPeriod(long)
.