Uses of Package
org.springframework.retry.backoff

Packages that use org.springframework.retry.backoff
org.springframework.retry.backoff Infrastructure implementations of retry backoff concerns. 
org.springframework.retry.support Infrastructure implementations of retry support concerns. 
 

Classes in org.springframework.retry.backoff used by org.springframework.retry.backoff
BackOffContext
           
BackOffInterruptedException
          Exception class signifiying that an attempt to back off using a BackOffPolicy was interrupted, most likely by an InterruptedException during a call to Thread.sleep(long).
BackOffPolicy
          Strategy interface to control back off between attempts in a single retry operation.
ExponentialBackOffPolicy
          Implementation of BackOffPolicy that increases the back off period for each retry attempt in a given set using the exponential function.
FixedBackOffPolicy
          Implementation of BackOffPolicy that pauses for a fixed period of time before continuing.
Sleeper
          Strategy interface for backoff policies to delegate the pausing of execution.
SleepingBackOffPolicy
          A interface which can be mixed in by BackOffPolicys indicating that they sleep when backing off.
StatelessBackOffPolicy
          Simple base class for BackOffPolicy implementations that maintain no state across invocations.
 

Classes in org.springframework.retry.backoff used by org.springframework.retry.support
BackOffPolicy
          Strategy interface to control back off between attempts in a single retry operation.
SleepingBackOffPolicy
          A interface which can be mixed in by BackOffPolicys indicating that they sleep when backing off.
 



Copyright © 2013 SpringSource. All Rights Reserved.