Uses of Interface
com.rabbitmq.client.RecoveryListener
-
Packages that use RecoveryListener 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.recovery Implementation of connection and topology recovery. -
-
Uses of RecoveryListener in com.rabbitmq.client
Methods in com.rabbitmq.client with parameters of type RecoveryListener Modifier and Type Method Description voidRecoverable. addRecoveryListener(RecoveryListener listener)Registers a connection recovery callback.voidRecoverable. removeRecoveryListener(RecoveryListener listener) -
Uses of RecoveryListener in com.rabbitmq.client.impl.recovery
Fields in com.rabbitmq.client.impl.recovery with type parameters of type RecoveryListener Modifier and Type Field Description private java.util.List<RecoveryListener>AutorecoveringChannel. recoveryListenersprivate java.util.List<RecoveryListener>AutorecoveringConnection. recoveryListenersMethods in com.rabbitmq.client.impl.recovery with parameters of type RecoveryListener Modifier and Type Method Description voidAutorecoveringChannel. addRecoveryListener(RecoveryListener listener)voidAutorecoveringConnection. addRecoveryListener(RecoveryListener listener)Adds the recovery listenervoidAutorecoveringChannel. removeRecoveryListener(RecoveryListener listener)voidAutorecoveringConnection. removeRecoveryListener(RecoveryListener listener)Removes the recovery listener
-