Uses of Interface
org.springframework.util.backoff.BackOff
Packages that use BackOff Package Description org.springframework.jms.config Support package for declarative messaging configuration, with Java configuration and XML schema support.org.springframework.jms.listener This package contains the base message listener container facility.org.springframework.util.backoff A generic back-off abstraction.Uses of BackOff in org.springframework.jms.config
Methods in org.springframework.jms.config with parameters of type BackOff Modifier and Type Method Description voidDefaultJmsListenerContainerFactory. setBackOff(BackOff backOff)Uses of BackOff in org.springframework.jms.listener
Methods in org.springframework.jms.listener with parameters of type BackOff Modifier and Type Method Description voidDefaultMessageListenerContainer. setBackOff(BackOff backOff)Specify theBackOffinstance to use to compute the interval between recovery attempts.Uses of BackOff in org.springframework.util.backoff
Classes in org.springframework.util.backoff that implement BackOff Modifier and Type Class Description classExponentialBackOffImplementation ofBackOffthat increases the back off period for each retry attempt.classFixedBackOffA simpleBackOffimplementation that provides a fixed interval between two attempts and a maximum number of retries.