Uses of Interface
org.springframework.retry.RetryListener
Packages that use RetryListener
Package
Description
Infrastructure implementations of retry interceptor concerns.
Infrastructure implementations of retry support concerns.
-
Uses of RetryListener in org.springframework.retry.annotation
Method parameters in org.springframework.retry.annotation with type arguments of type RetryListenerModifier and TypeMethodDescriptionvoid
AnnotationAwareRetryOperationsInterceptor.setListeners
(Collection<RetryListener> globalListeners) Default retry listeners to apply to all operations. -
Uses of RetryListener in org.springframework.retry.listener
Classes in org.springframework.retry.listener that implement RetryListenerModifier and TypeClassDescriptionclass
Empty method implementation ofRetryListener
with focus on the AOP reflective method invocations providing convenience retry listener type-safe (with a `MethodInvocationRetryCallback` callback parameter) specific methods.class
Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of RetryListener in org.springframework.retry.stats
Classes in org.springframework.retry.stats that implement RetryListener -
Uses of RetryListener in org.springframework.retry.support
Classes in org.springframework.retry.support that implement RetryListenerModifier and TypeClassDescriptionclass
TheRetryListener
implementation for MicrometerTimer
s around retry operations.Methods in org.springframework.retry.support with parameters of type RetryListenerModifier and TypeMethodDescriptionvoid
RetryTemplate.registerListener
(RetryListener listener) Register an additional listener at the end of the list.void
RetryTemplate.registerListener
(RetryListener listener, int index) Register an additional listener at the specified index.void
RetryTemplate.setListeners
(RetryListener[] listeners) Setter for listeners.RetryTemplateBuilder.withListener
(RetryListener listener) Append the providedlistener
toRetryTemplate
's list of listeners.Method parameters in org.springframework.retry.support with type arguments of type RetryListenerModifier and TypeMethodDescriptionRetryTemplateBuilder.withListeners
(List<RetryListener> listeners) Append all providedlisteners
toRetryTemplate
's list of listeners.
RetryListener