Modifier and Type | Method and Description |
---|---|
AmqpSender |
AmqpSender.exceptionHandler(io.vertx.core.Handler<Throwable> handler) |
AmqpSender |
AmqpSender.send(AmqpMessage message)
Sends an AMQP message.
|
AmqpSender |
AmqpSender.sendWithAck(AmqpMessage message,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> acknowledgementHandler)
Sends an AMQP message and waits for an acknowledgement.
|
AmqpSender |
AmqpSender.setWriteQueueMaxSize(int maxSize) |
Modifier and Type | Method and Description |
---|---|
io.vertx.core.Future<AmqpSender> |
AmqpConnection.createAnonymousSender()
Like
AmqpConnection.createAnonymousSender(Handler) but returns a Future of the asynchronous result |
io.vertx.core.Future<AmqpSender> |
AmqpClient.createSender(String address)
Like
AmqpClient.createSender(String, Handler) but returns a Future of the asynchronous result |
io.vertx.core.Future<AmqpSender> |
AmqpConnection.createSender(String address)
Like
AmqpConnection.createSender(String, Handler) but returns a Future of the asynchronous result |
io.vertx.core.Future<AmqpSender> |
AmqpClient.createSender(String address,
AmqpSenderOptions options)
Like
AmqpClient.createSender(String, AmqpSenderOptions, Handler) but returns a Future of the asynchronous result |
io.vertx.core.Future<AmqpSender> |
AmqpConnection.createSender(String address,
AmqpSenderOptions options)
Like
AmqpConnection.createSender(String, AmqpSenderOptions, Handler) but returns a Future of the asynchronous result |
Modifier and Type | Method and Description |
---|---|
AmqpConnection |
AmqpConnection.createAnonymousSender(io.vertx.core.Handler<io.vertx.core.AsyncResult<AmqpSender>> completionHandler)
Creates an anonymous sender.
|
AmqpClient |
AmqpClient.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,
AmqpSenderOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<AmqpSender>> completionHandler)
Creates a sender used to send messages to the given address.
|
AmqpClient |
AmqpClient.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.createSender(String address,
io.vertx.core.Handler<io.vertx.core.AsyncResult<AmqpSender>> completionHandler)
Creates a sender used to send messages to the given address.
|
Copyright © 2022 Eclipse. All rights reserved.