Uses of Interface
org.springframework.batch.retry.RetryPolicy

Packages that use RetryPolicy
org.springframework.batch.core.step.item Specific implementations of step concerns for item-oriented approach. 
org.springframework.batch.retry.policy Infrastructure implementations of retry policy concerns. 
org.springframework.batch.retry.support Infrastructure implementations of retry support concerns. 
 

Uses of RetryPolicy in org.springframework.batch.core.step.item
 

Constructors in org.springframework.batch.core.step.item with parameters of type RetryPolicy
SimpleRetryExceptionHandler(RetryPolicy retryPolicy, ExceptionHandler exceptionHandler, Class[] classes)
           
 

Uses of RetryPolicy in org.springframework.batch.retry.policy
 

Classes in org.springframework.batch.retry.policy that implement RetryPolicy
 class AbstractStatefulRetryPolicy
          Base class for stateful retry policies: those that operate in the context of a callback that is called once per retry execution (usually to enforce that it is only called once per transaction).
 class AbstractStatelessRetryPolicy
          Base class for "normal" retry policies: those that operate in the context of a callback that is called repeatedly in a loop until it succeeds, or the policy decides to terminate.
 class AlwaysRetryPolicy
          A RetryPolicy that always permits a retry.
 class CompositeRetryPolicy
          A RetryPolicy that composes a list of other policies and delegates calls to them in order.
 class ExceptionClassifierRetryPolicy
          A RetryPolicy that dynamically adapts to one of a set of injected policies according to the value of the latest exception.
 class ItemWriterRetryPolicy
          A RetryPolicy that detects an ItemWriterRetryCallback when it opens a new context, and uses it to make sure the item is in place for later decisions about how to retry or backoff.
 class NeverRetryPolicy
          A RetryPolicy that allows the first attempt but never permits a retry.
 class SimpleRetryPolicy
          Simple retry policy that retries a fixed number of times for a set of named exceptions (and subclasses).
 class TimeoutRetryPolicy
          A RetryPolicy that allows a retry only if it hasn't timed out.
 

Methods in org.springframework.batch.retry.policy with parameters of type RetryPolicy
 void ItemWriterRetryPolicy.setDelegate(RetryPolicy delegate)
          Setter for delegate.
 void CompositeRetryPolicy.setPolicies(RetryPolicy[] policies)
          Setter for policies.
 

Constructors in org.springframework.batch.retry.policy with parameters of type RetryPolicy
ItemWriterRetryPolicy(RetryPolicy delegate)
          Convenience constructor to set delegate on init.
 

Uses of RetryPolicy in org.springframework.batch.retry.support
 

Methods in org.springframework.batch.retry.support with parameters of type RetryPolicy
 void RetryTemplate.setRetryPolicy(RetryPolicy retryPolicy)
          Setter for RetryPolicy.
 



Copyright © 2008 SpringSource. All Rights Reserved.