Uses of Interface
com.rabbitmq.client.ShutdownListener
-
Packages that use ShutdownListener 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.com.rabbitmq.client.impl.recovery Implementation of connection and topology recovery. -
-
Uses of ShutdownListener in com.rabbitmq.client
Methods in com.rabbitmq.client with parameters of type ShutdownListener Modifier and Type Method Description void
ShutdownNotifier. addShutdownListener(ShutdownListener listener)
Add shutdown listener.void
ShutdownNotifier. removeShutdownListener(ShutdownListener listener)
Remove shutdown listener for the component. -
Uses of ShutdownListener in com.rabbitmq.client.impl
Fields in com.rabbitmq.client.impl with type parameters of type ShutdownListener Modifier and Type Field Description private java.util.List<ShutdownListener>
ShutdownNotifierComponent. shutdownListeners
List of all shutdown listeners associated with the componentMethods in com.rabbitmq.client.impl with parameters of type ShutdownListener Modifier and Type Method Description void
ShutdownNotifierComponent. addShutdownListener(ShutdownListener listener)
void
ShutdownNotifierComponent. removeShutdownListener(ShutdownListener listener)
-
Uses of ShutdownListener in com.rabbitmq.client.impl.recovery
Fields in com.rabbitmq.client.impl.recovery with type parameters of type ShutdownListener Modifier and Type Field Description private java.util.List<ShutdownListener>
AutorecoveringChannel. shutdownHooks
private java.util.List<ShutdownListener>
AutorecoveringConnection. shutdownHooks
Methods in com.rabbitmq.client.impl.recovery with parameters of type ShutdownListener Modifier and Type Method Description void
AutorecoveringChannel. addShutdownListener(ShutdownListener listener)
void
AutorecoveringConnection. addShutdownListener(ShutdownListener listener)
void
AutorecoveringChannel. removeShutdownListener(ShutdownListener listener)
void
AutorecoveringConnection. removeShutdownListener(ShutdownListener listener)
-