public interface AmqpSender extends WriteStream<AmqpMessage>
| Modifier and Type | Method and Description |
|---|---|
String |
address() |
void |
close(Handler<AsyncResult<Void>> handler)
Closes the sender.
|
AmqpConnection |
connection()
Gets the connection having created the sender.
|
AmqpSender |
exceptionHandler(Handler<Throwable> handler) |
long |
remainingCredits() |
AmqpSender |
send(AmqpMessage message)
Sends an AMQP message.
|
AmqpSender |
sendWithAck(AmqpMessage message,
Handler<AsyncResult<Void>> acknowledgementHandler)
Sends an AMQP message and waits for an acknowledgement.
|
AmqpSender |
setWriteQueueMaxSize(int maxSize) |
AmqpSender |
write(AmqpMessage data) |
AmqpSender |
write(AmqpMessage data,
Handler<AsyncResult<Void>> handler) |
drainHandler, end, end, end, end, writeQueueFullAmqpSender write(AmqpMessage data)
write in interface WriteStream<AmqpMessage>AmqpSender write(AmqpMessage data, Handler<AsyncResult<Void>> handler)
write in interface WriteStream<AmqpMessage>AmqpSender exceptionHandler(Handler<Throwable> handler)
exceptionHandler in interface StreamBaseexceptionHandler in interface WriteStream<AmqpMessage>AmqpSender setWriteQueueMaxSize(int maxSize)
setWriteQueueMaxSize in interface WriteStream<AmqpMessage>AmqpSender send(AmqpMessage message)
message - the message, must not be nullAmqpSender sendWithAck(AmqpMessage message, Handler<AsyncResult<Void>> acknowledgementHandler)
AsyncResult marked as failed if the message has been rejected or re-routed. If the message has been accepted,
the handler is called with a success.message - the message, must not be nullacknowledgementHandler - the acknowledgement handler, must not be nullvoid close(Handler<AsyncResult<Void>> handler)
handler - called when the sender has been closed, must not be nullString address()
AmqpConnection connection()
nulllong remainingCredits()
Copyright © 2023 Eclipse. All rights reserved.