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 ExponentialBackOffPolicy.start(RetryContext context)
          Returns a new instance of BackOffContext configured with the 'expSeed' and 'increment' values.
 BackOffContext BackOffPolicy.start(RetryContext context)
          Start a new block of back off operations.
 

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 ExponentialBackOffPolicy.backOff(BackOffContext backOffContext)
          Pause for a length of time equal to ' exp(backOffContext.expSeed)'.
 void BackOffPolicy.backOff(BackOffContext backOffContext)
          Back off/pause in an implementation-specific fashion.
 



Copyright © 2013 SpringSource. All Rights Reserved.