Uses of Interface
com.rabbitmq.client.Command
-
Packages that use Command 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 Command in com.rabbitmq.client
Methods in com.rabbitmq.client that return Command Modifier and Type Method Description Command
Channel. rpc(Method method)
Synchronously send a method over this channel.Methods in com.rabbitmq.client with parameters of type Command Modifier and Type Method Description void
TrafficListener. read(Command inboundCommand)
Notified for each inboundCommand
.void
TrafficListener. write(Command outboundCommand)
Notified for each outboundCommand
. -
Uses of Command in com.rabbitmq.client.impl
Classes in com.rabbitmq.client.impl that implement Command Modifier and Type Class Description class
AMQCommand
AMQP 0-9-1-specific implementation ofCommand
which accumulates method, header and body from a series of frames, unless these are supplied at construction time.Methods in com.rabbitmq.client.impl with parameters of type Command Modifier and Type Method Description void
AMQConnection. handleConnectionClose(Command closeCommand)
abstract boolean
AMQChannel. processAsync(Command command)
Protected API - called by nextCommand to check possibly handle an incoming Command before it is returned to the caller of nextCommand.boolean
ChannelN. processAsync(Command command)
Protected API - Filters the inbound command stream, processing Basic.Deliver, Basic.Return and Channel.Close specially.boolean
AMQConnection. processControlCommand(Command c)
Handles incoming control commands on channel zero.protected void
ChannelN. processDelivery(Command command, AMQImpl.Basic.Deliver method)
void
LogTrafficListener. read(Command inboundCommand)
protected boolean
LogTrafficListener. shouldLog(Command command)
void
LogTrafficListener. write(Command outboundCommand)
-
Uses of Command in com.rabbitmq.client.impl.recovery
Methods in com.rabbitmq.client.impl.recovery that return Command Modifier and Type Method Description Command
AutorecoveringChannel. rpc(Method method)
Methods in com.rabbitmq.client.impl.recovery with parameters of type Command Modifier and Type Method Description protected void
RecoveryAwareChannelN. processDelivery(Command command, AMQImpl.Basic.Deliver method)
-