Modifier and Type | Method and Description |
---|---|
AmqpConnection |
AmqpConnection.close(io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> done)
Closes the AMQP connection, i.e.
|
AmqpConnection |
AmqpReceiver.connection()
Gets the connection having created the receiver.
|
AmqpConnection |
AmqpSender.connection()
Gets the connection having created the sender.
|
AmqpConnection |
AmqpConnection.createAnonymousSender(io.vertx.core.Handler<io.vertx.core.AsyncResult<AmqpSender>> completionHandler)
Creates an anonymous sender.
|
AmqpConnection |
AmqpConnection.createDynamicReceiver(io.vertx.core.Handler<io.vertx.core.AsyncResult<AmqpReceiver>> completionHandler)
Creates a dynamic receiver.
|
AmqpConnection |
AmqpConnection.createReceiver(String address,
AmqpReceiverOptions receiverOptions,
io.vertx.core.Handler<io.vertx.core.AsyncResult<AmqpReceiver>> completionHandler)
Creates a receiver used to consumer messages from the given address.
|
AmqpConnection |
AmqpConnection.createReceiver(String address,
io.vertx.core.Handler<io.vertx.core.AsyncResult<AmqpReceiver>> completionHandler)
Creates a receiver used to consume messages from the given address.
|
AmqpConnection |
AmqpConnection.createSender(String address,
AmqpSenderOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<AmqpSender>> completionHandler)
Creates a sender used to send messages to the given address.
|
AmqpConnection |
AmqpConnection.createSender(String address,
io.vertx.core.Handler<io.vertx.core.AsyncResult<AmqpSender>> completionHandler)
Creates a sender used to send messages to the given address.
|
AmqpConnection |
AmqpConnection.exceptionHandler(io.vertx.core.Handler<Throwable> handler)
Registers a handler called on disconnection.
|
Modifier and Type | Method and Description |
---|---|
io.vertx.core.Future<AmqpConnection> |
AmqpClient.connect()
Like
AmqpClient.connect(Handler) but returns a Future of the asynchronous result |
Modifier and Type | Method and Description |
---|---|
AmqpClient |
AmqpClient.connect(io.vertx.core.Handler<io.vertx.core.AsyncResult<AmqpConnection>> connectionHandler)
Connects to the AMQP broker or router.
|
Copyright © 2022 Eclipse. All rights reserved.