Uses of Interface
com.rabbitmq.client.ConfirmListener
-
Packages that use ConfirmListener 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 ConfirmListener in com.rabbitmq.client
Methods in com.rabbitmq.client that return ConfirmListener Modifier and Type Method Description ConfirmListener
Channel. addConfirmListener(ConfirmCallback ackCallback, ConfirmCallback nackCallback)
Add a lambda-basedConfirmListener
.Methods in com.rabbitmq.client with parameters of type ConfirmListener Modifier and Type Method Description void
Channel. addConfirmListener(ConfirmListener listener)
Add aConfirmListener
.boolean
Channel. removeConfirmListener(ConfirmListener listener)
Remove aConfirmListener
. -
Uses of ConfirmListener in com.rabbitmq.client.impl
Fields in com.rabbitmq.client.impl with type parameters of type ConfirmListener Modifier and Type Field Description private java.util.Collection<ConfirmListener>
ChannelN. confirmListeners
The ConfirmListener collection.Methods in com.rabbitmq.client.impl that return ConfirmListener Modifier and Type Method Description ConfirmListener
ChannelN. addConfirmListener(ConfirmCallback ackCallback, ConfirmCallback nackCallback)
Methods in com.rabbitmq.client.impl with parameters of type ConfirmListener Modifier and Type Method Description void
ChannelN. addConfirmListener(ConfirmListener listener)
boolean
ChannelN. removeConfirmListener(ConfirmListener listener)
-
Uses of ConfirmListener in com.rabbitmq.client.impl.recovery
Fields in com.rabbitmq.client.impl.recovery with type parameters of type ConfirmListener Modifier and Type Field Description private java.util.List<ConfirmListener>
AutorecoveringChannel. confirmListeners
Methods in com.rabbitmq.client.impl.recovery that return ConfirmListener Modifier and Type Method Description ConfirmListener
AutorecoveringChannel. addConfirmListener(ConfirmCallback ackCallback, ConfirmCallback nackCallback)
Methods in com.rabbitmq.client.impl.recovery with parameters of type ConfirmListener Modifier and Type Method Description void
AutorecoveringChannel. addConfirmListener(ConfirmListener listener)
boolean
AutorecoveringChannel. removeConfirmListener(ConfirmListener listener)
-