Uses of Interface
com.rabbitmq.client.RecoveryDelayHandler
-
Packages that use RecoveryDelayHandler Package Description com.rabbitmq.client The client API proper: classes and interfaces representing the AMQP connections, channels, and wire-protocol framing descriptors.com.rabbitmq.client.impl Implementations of interfaces specified in the client API, and their supporting classes. -
-
Uses of RecoveryDelayHandler in com.rabbitmq.client
Classes in com.rabbitmq.client that implement RecoveryDelayHandler Modifier and Type Class Description static class
RecoveryDelayHandler.DefaultRecoveryDelayHandler
Basic implementation ofRecoveryDelayHandler
that returns thenetwork recovery interval
each time.static class
RecoveryDelayHandler.ExponentialBackoffDelayHandler
Backoff implementation ofRecoveryDelayHandler
that uses the Fibonacci sequence (by default) to increase the recovery delay time after each failed attempt.Methods in com.rabbitmq.client that return RecoveryDelayHandler Modifier and Type Method Description RecoveryDelayHandler
ConnectionFactory. getRecoveryDelayHandler()
Returns automatic connection recovery delay handler.Methods in com.rabbitmq.client with parameters of type RecoveryDelayHandler Modifier and Type Method Description void
ConnectionFactory. setRecoveryDelayHandler(RecoveryDelayHandler recoveryDelayHandler)
Sets the automatic connection recovery delay handler. -
Uses of RecoveryDelayHandler in com.rabbitmq.client.impl
Methods in com.rabbitmq.client.impl that return RecoveryDelayHandler Modifier and Type Method Description RecoveryDelayHandler
ConnectionParams. getRecoveryDelayHandler()
Get the recovery delay handler.Methods in com.rabbitmq.client.impl with parameters of type RecoveryDelayHandler Modifier and Type Method Description void
ConnectionParams. setRecoveryDelayHandler(RecoveryDelayHandler recoveryDelayHandler)
-