Uses of Class
com.rabbitmq.client.impl.Frame
-
Packages that use Frame 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.nio NIO network connector. -
-
Uses of Frame in com.rabbitmq.client
Methods in com.rabbitmq.client that return Frame Modifier and Type Method Description Frame
UnexpectedFrameError. getReceivedFrame()
Constructors in com.rabbitmq.client with parameters of type Frame Constructor Description UnexpectedFrameError(Frame frame, int expectedFrameType)
-
Uses of Frame in com.rabbitmq.client.impl
Methods in com.rabbitmq.client.impl that return Frame Modifier and Type Method Description static Frame
Frame. fromBodyFragment(int channelNumber, byte[] body, int offset, int length)
Frame
FrameHandler. readFrame()
Read aFrame
from the underlying data connection.Frame
SocketFrameHandler. readFrame()
static Frame
Frame. readFrom(DataInputStream is)
Protected API - Factory method to instantiate a Frame by reading an AMQP-wire-protocol frame from the given input stream.Frame
AMQContentHeader. toFrame(int channelNumber, long bodySize)
Private API - Called byAMQCommand.transmit(com.rabbitmq.client.impl.AMQChannel)
Frame
Method. toFrame(int channelNumber)
Methods in com.rabbitmq.client.impl with parameters of type Frame Modifier and Type Method Description void
AMQChannel. handleFrame(Frame frame)
Private API - When the Connection receives a Frame for this channel, it passes it to this method.boolean
AMQCommand. handleFrame(Frame f)
boolean
AMQConnection. handleReadFrame(Frame frame)
private APIvoid
AMQConnection. writeFrame(Frame f)
Public API - sends a frame directly to the broker.void
FrameHandler. writeFrame(Frame frame)
Write aFrame
to the underlying data connection.void
SocketFrameHandler. writeFrame(Frame frame)
-
Uses of Frame in com.rabbitmq.client.impl.nio
Methods in com.rabbitmq.client.impl.nio that return Frame Modifier and Type Method Description Frame
FrameBuilder. readFrame()
Read a frame from the network.Frame
SocketChannelFrameHandler. readFrame()
Methods in com.rabbitmq.client.impl.nio with parameters of type Frame Modifier and Type Method Description void
SocketChannelFrameHandlerState. write(Frame frame)
void
SocketChannelFrameHandler. writeFrame(Frame frame)
Constructors in com.rabbitmq.client.impl.nio with parameters of type Frame Constructor Description FrameWriteRequest(Frame frame)
-