Uses of Interface
org.springframework.batch.retry.backoff.BackOffContext

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

Uses of BackOffContext in org.springframework.batch.retry.backoff
 

Methods in org.springframework.batch.retry.backoff that return BackOffContext
 BackOffContext StatelessBackOffPolicy.start(RetryContext status)
          Returns 'null'.
 BackOffContext BackOffPolicy.start(RetryContext context)
          Start a new block of back off operations.
 BackOffContext ExponentialBackOffPolicy.start(RetryContext context)
          Returns a new instance of BackOffContext configured with the 'expSeed' and 'increment' values.
 

Methods in org.springframework.batch.retry.backoff with parameters of type BackOffContext
 void StatelessBackOffPolicy.backOff(BackOffContext backOffContext)
          Delegates directly to the StatelessBackOffPolicy.doBackOff() method without passing on the BackOffContext argument which is not needed for stateless implementations.
 void BackOffPolicy.backOff(BackOffContext backOffContext)
          Back off/pause in an implementation-specific fashion.
 void ExponentialBackOffPolicy.backOff(BackOffContext backOffContext)
          Pause for a length of time equal to 'exp(backOffContext.expSeed)'.
 



Copyright © 2009 SpringSource. All Rights Reserved.