Uses of Interface
com.rabbitmq.client.ReturnListener
-
Packages that use ReturnListener 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 ReturnListener in com.rabbitmq.client
Methods in com.rabbitmq.client that return ReturnListener Modifier and Type Method Description ReturnListener
Channel. addReturnListener(ReturnCallback returnCallback)
Add a lambda-basedReturnListener
.Methods in com.rabbitmq.client with parameters of type ReturnListener Modifier and Type Method Description void
Channel. addReturnListener(ReturnListener listener)
Add aReturnListener
.boolean
Channel. removeReturnListener(ReturnListener listener)
Remove aReturnListener
. -
Uses of ReturnListener in com.rabbitmq.client.impl
Fields in com.rabbitmq.client.impl with type parameters of type ReturnListener Modifier and Type Field Description private java.util.Collection<ReturnListener>
ChannelN. returnListeners
The ReturnListener collection.Methods in com.rabbitmq.client.impl that return ReturnListener Modifier and Type Method Description ReturnListener
ChannelN. addReturnListener(ReturnCallback returnCallback)
Methods in com.rabbitmq.client.impl with parameters of type ReturnListener Modifier and Type Method Description void
ChannelN. addReturnListener(ReturnListener listener)
boolean
ChannelN. removeReturnListener(ReturnListener listener)
-
Uses of ReturnListener in com.rabbitmq.client.impl.recovery
Fields in com.rabbitmq.client.impl.recovery with type parameters of type ReturnListener Modifier and Type Field Description private java.util.List<ReturnListener>
AutorecoveringChannel. returnListeners
Methods in com.rabbitmq.client.impl.recovery that return ReturnListener Modifier and Type Method Description ReturnListener
AutorecoveringChannel. addReturnListener(ReturnCallback returnCallback)
Methods in com.rabbitmq.client.impl.recovery with parameters of type ReturnListener Modifier and Type Method Description void
AutorecoveringChannel. addReturnListener(ReturnListener listener)
boolean
AutorecoveringChannel. removeReturnListener(ReturnListener listener)
-