Classes, interfaces and traits

AmqpClient

AMQP Client entry point.

Use this interface to create an instance of @see \io\vertx\jphp\amqp\AmqpClient and connect to a broker and server.

« More »

AmqpConnection

Once connected to the broker or router, you get a connection. This connection is automatically opened.

« More »

AmqpMessage

Represents an AMQP message.

Reference about the different metadata can be found on AMQP message properties.

Note that the body is retrieved using body* method depending on the expected type.

« More »

AmqpMessageBuilder

Builder to create a new @see \io\vertx\jphp\amqp\AmqpMessage.

Reference about the different metadata can be found on AMQP message properties.

Note that the body is set using withBodyAs* method depending on the passed type.

« More »

AmqpReceiver

Interface used to consume AMQP message as a stream of message.

Back pressure is implemented using AMQP credits.

« More »

AmqpSender

AMQP Sender interface used to send messages.

« More »