Package | Description |
---|---|
io.vertx.reactivex.amqp |
Modifier and Type | Field and Description |
---|---|
static io.vertx.lang.rx.TypeArg<AmqpMessage> |
AmqpMessage.__TYPE_ARG |
Modifier and Type | Method and Description |
---|---|
AmqpMessage |
AmqpMessage.accepted()
When receiving a message, and when auto-acknowledgement is disabled, this method is used to acknowledge
the incoming message.
|
AmqpMessage |
AmqpMessageBuilder.build() |
AmqpMessage |
AmqpMessage.modified(boolean deliveryFailed,
boolean undeliverableHere)
When receiving a message, and when auto-acknowledgement is disabled, this method is used to acknowledge
the incoming message as
modified . |
static AmqpMessage |
AmqpMessage.newInstance(AmqpMessage arg) |
AmqpMessage |
AmqpMessage.rejected()
When receiving a message, and when auto-acknowledgement is disabled, this method is used to acknowledge
the incoming message as
rejected . |
AmqpMessage |
AmqpMessage.released()
When receiving a message, and when auto-acknowledgement is disabled, this method is used to acknowledge
the incoming message as
released . |
Modifier and Type | Method and Description |
---|---|
WriteStream<AmqpMessage> |
AmqpSender.drainHandler(Handler<Void> handler)
Set a drain handler on the stream.
|
Pipe<AmqpMessage> |
AmqpReceiver.pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .
|
Flowable<AmqpMessage> |
AmqpReceiver.toFlowable() |
Observable<AmqpMessage> |
AmqpReceiver.toObservable() |
WriteStreamObserver<AmqpMessage> |
AmqpSender.toObserver() |
WriteStreamSubscriber<AmqpMessage> |
AmqpSender.toSubscriber() |
Modifier and Type | Method and Description |
---|---|
static AmqpMessageBuilder |
AmqpMessage.create(AmqpMessage existing)
Creates a builder to create a new
AmqpMessage copying the metadata from the passed message. |
void |
AmqpSender.end(AmqpMessage data)
Same as but with an
handler called when the operation completes |
void |
AmqpSender.end(AmqpMessage data,
Handler<AsyncResult<Void>> handler)
Same as but with an
handler called when the operation completes |
Completable |
AmqpSender.rxEnd(AmqpMessage data)
Same as but with an
handler called when the operation completes |
Completable |
AmqpSender.rxSendWithAck(AmqpMessage message)
Sends an AMQP message and waits for an acknowledgement.
|
Completable |
AmqpSender.rxWrite(AmqpMessage data)
Same as but with an
handler called when the operation completes |
AmqpSender |
AmqpSender.send(AmqpMessage message)
Sends an AMQP message.
|
AmqpSender |
AmqpSender.sendWithAck(AmqpMessage message)
Sends an AMQP message and waits for an acknowledgement.
|
AmqpSender |
AmqpSender.sendWithAck(AmqpMessage message,
Handler<AsyncResult<Void>> acknowledgementHandler)
Sends an AMQP message and waits for an acknowledgement.
|
void |
AmqpSender.write(AmqpMessage data)
Same as but with an
handler called when the operation completes |
void |
AmqpSender.write(AmqpMessage data,
Handler<AsyncResult<Void>> handler)
Same as but with an
handler called when the operation completes |
Modifier and Type | Method and Description |
---|---|
AmqpReceiver |
AmqpReceiver.handler(Handler<AmqpMessage> handler) |
void |
AmqpReceiver.pipeTo(WriteStream<AmqpMessage> dst)
Pipe this
ReadStream to the WriteStream . |
void |
AmqpReceiver.pipeTo(WriteStream<AmqpMessage> dst,
Handler<AsyncResult<Void>> handler)
Pipe this
ReadStream to the WriteStream . |
Completable |
AmqpReceiver.rxPipeTo(WriteStream<AmqpMessage> dst)
Pipe this
ReadStream to the WriteStream . |
Copyright © 2021 Eclipse. All rights reserved.