Uses of Interface
org.springframework.classify.Classifier
Package
Description
Infrastructure implementations of retry aop concerns.
Infrastructure implementations of retry policy concerns.
Infrastructure implementations of retry support concerns.
-
Uses of Classifier in org.springframework.classify
Modifier and TypeClassDescriptionclass
A special purposeClassifier
with easy configuration options for mapping from one arbitrary type of object to another via a pattern matcher.class
AClassifier
for exceptions that has only two classes (true and false).class
ClassifierAdapter<C,
T> Wrapper for an object to adapt it to theClassifier
interface.class
ClassifierSupport<C,
T> Base class forClassifier
implementations.class
AClassifier
that maps from String patterns with wildcards to a set of values of a given type.class
SubclassClassifier<T,
C> AClassifier
for a parameterised object type based on a map.ModifierConstructorDescriptionBackToBackPatternClassifier
(Classifier<C, String> router, Classifier<String, T> matcher) Set up a classifier with input to the router and output from the matcher.ClassifierAdapter
(Classifier<C, T> delegate) Create a newClassifier
from the delegate provided. -
Uses of Classifier in org.springframework.retry.interceptor
Modifier and TypeMethodDescriptionRetryInterceptorBuilder.StatefulRetryInterceptorBuilder.rollbackFor
(Classifier<? super Throwable, Boolean> rollbackClassifier) Control the rollback of an ongoing transaction.void
StatefulRetryOperationsInterceptor.setRollbackClassifier
(Classifier<? super Throwable, Boolean> rollbackClassifier) Rollback classifier for the retry state. -
Uses of Classifier in org.springframework.retry.policy
Modifier and TypeMethodDescriptionvoid
ExceptionClassifierRetryPolicy.setExceptionClassifier
(Classifier<Throwable, RetryPolicy> exceptionClassifier) Setter for an exception classifier. -
Uses of Classifier in org.springframework.retry.support
ModifierConstructorDescriptionDefaultRetryState
(Object key, boolean forceRefresh, Classifier<? super Throwable, Boolean> rollbackClassifier) Create aDefaultRetryState
representing the state for a new retry attempt.DefaultRetryState
(Object key, Classifier<? super Throwable, Boolean> rollbackClassifier) Defaults the force refresh flag to false.