Closes the client. The client must always be closed once not needed anymore.
Closes the client. The client must always be closed once not needed anymore.
Connects to the AMQP broker or router. The location is specified in the AmqpClientOptions as well as the potential credential required.
Connects to the AMQP broker or router. The location is specified in the AmqpClientOptions as well as the potential credential required.
Creates a receiver used to consume messages from the given address. The receiver has no handler and won't start receiving messages until a handler is explicitly configured. This method avoids having to connect explicitly. You can retrieve the connection using {@link AmqpReceiver#connection}.
Creates a receiver used to consume messages from the given address. The receiver has no handler and won't start receiving messages until a handler is explicitly configured. This method avoids having to connect explicitly. You can retrieve the connection using {@link AmqpReceiver#connection}.
Creates a receiver used to consumer messages from the given address. This method avoids having to connect explicitly. You can retrieve the connection using {@link AmqpReceiver#connection}.
Creates a receiver used to consumer messages from the given address. This method avoids having to connect explicitly. You can retrieve the connection using {@link AmqpReceiver#connection}.
Creates a sender used to send messages to the given address. The address must be set.
Creates a sender used to send messages to the given address. The address must be set.
Creates a sender used to send messages to the given address. The address must be set.
Creates a sender used to send messages to the given address. The address must be set.
Creates a new instance of AmqpClient using an internal Vert.x instance (with default configuration) and the given AMQP client configuration. Note that the created Vert.x instance will be closed when the client is closed.
Creates a new instance of AmqpClient with the given Vert.x instance and the given options.
Generated using TypeDoc
AMQP Client entry point. Use this interface to create an instance of AmqpClient and connect to a broker and server.