Uses of Interface
org.springframework.resilience.retry.MethodRetryPredicate
Packages that use MethodRetryPredicate
Package
Description
A retry interceptor arrangement based on
core.retry and Reactor.-
Uses of MethodRetryPredicate in org.springframework.resilience.retry
Methods in org.springframework.resilience.retry that return MethodRetryPredicateModifier and TypeMethodDescriptionMethodRetrySpec.predicate()Returns the value of thepredicaterecord component.Constructors in org.springframework.resilience.retry with parameters of type MethodRetryPredicateModifierConstructorDescriptionMethodRetrySpec(Collection<Class<? extends Throwable>> includes, Collection<Class<? extends Throwable>> excludes, MethodRetryPredicate predicate, long maxRetries, Duration delay, Duration jitter, double multiplier, Duration maxDelay) Deprecated, for removal: This API element is subject to removal in a future version.MethodRetrySpec(Collection<Class<? extends Throwable>> includes, Collection<Class<? extends Throwable>> excludes, MethodRetryPredicate predicate, long maxRetries, Duration timeout, Duration delay, Duration jitter, double multiplier, Duration maxDelay) Creates an instance of aMethodRetrySpecrecord class.MethodRetrySpec(MethodRetryPredicate predicate, long maxRetries, Duration delay) Construct a newMethodRetryPredicatewith the supplied arguments.MethodRetrySpec(MethodRetryPredicate predicate, long maxRetries, Duration delay, Duration jitter, double multiplier, Duration maxDelay) Construct a newMethodRetryPredicatewith the supplied arguments.
MethodRetrySpec(Collection, Collection, MethodRetryPredicate, long, Duration, Duration, Duration, double, Duration)