Uses of Class
org.springframework.retry.backoff.BackOffInterruptedException
Packages that use BackOffInterruptedException
Package
Description
Infrastructure implementations of retry backoff concerns.
-
Uses of BackOffInterruptedException in org.springframework.retry.backoff
Methods in org.springframework.retry.backoff that throw BackOffInterruptedExceptionModifier and TypeMethodDescriptionvoidBackOffPolicy.backOff(BackOffContext backOffContext) Back off/pause in an implementation-specific fashion.voidExponentialBackOffPolicy.backOff(BackOffContext backOffContext) Pause for the current backoff interval.final voidStatelessBackOffPolicy.backOff(BackOffContext backOffContext) Delegates directly to theStatelessBackOffPolicy.doBackOff()method without passing on theBackOffContextargument which is not needed for stateless implementations.protected voidFixedBackOffPolicy.doBackOff()Pause for theFixedBackOffPolicy.setBackOffPeriod(long).protected voidNoBackOffPolicy.doBackOff()protected abstract voidStatelessBackOffPolicy.doBackOff()Sub-classes should implement this method to perform the actual back off.protected voidUniformRandomBackOffPolicy.doBackOff()Pause for theUniformRandomBackOffPolicy.setMinBackOffPeriod(long).