Uses of Interface
com.rabbitmq.client.BlockedListener
-
Packages that use BlockedListener 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 BlockedListener in com.rabbitmq.client
Methods in com.rabbitmq.client that return BlockedListener Modifier and Type Method Description BlockedListener
Connection. addBlockedListener(BlockedCallback blockedCallback, UnblockedCallback unblockedCallback)
Add a lambda-basedBlockedListener
.Methods in com.rabbitmq.client with parameters of type BlockedListener Modifier and Type Method Description void
Connection. addBlockedListener(BlockedListener listener)
Add aBlockedListener
.boolean
Connection. removeBlockedListener(BlockedListener listener)
Remove aBlockedListener
. -
Uses of BlockedListener in com.rabbitmq.client.impl
Fields in com.rabbitmq.client.impl with type parameters of type BlockedListener Modifier and Type Field Description private java.util.Collection<BlockedListener>
AMQConnection. blockedListeners
Methods in com.rabbitmq.client.impl that return BlockedListener Modifier and Type Method Description BlockedListener
AMQConnection. addBlockedListener(BlockedCallback blockedCallback, UnblockedCallback unblockedCallback)
Methods in com.rabbitmq.client.impl with parameters of type BlockedListener Modifier and Type Method Description void
AMQConnection. addBlockedListener(BlockedListener listener)
boolean
AMQConnection. removeBlockedListener(BlockedListener listener)
-
Uses of BlockedListener in com.rabbitmq.client.impl.recovery
Fields in com.rabbitmq.client.impl.recovery with type parameters of type BlockedListener Modifier and Type Field Description private java.util.List<BlockedListener>
AutorecoveringConnection. blockedListeners
Methods in com.rabbitmq.client.impl.recovery that return BlockedListener Modifier and Type Method Description BlockedListener
AutorecoveringConnection. addBlockedListener(BlockedCallback blockedCallback, UnblockedCallback unblockedCallback)
Methods in com.rabbitmq.client.impl.recovery with parameters of type BlockedListener Modifier and Type Method Description void
AutorecoveringConnection. addBlockedListener(BlockedListener listener)
boolean
AutorecoveringConnection. removeBlockedListener(BlockedListener listener)
-