| Package | Description | 
|---|---|
| io.vertx.rxjava.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 . 
 | 
Observable<AmqpMessage> | 
AmqpReceiver.toObservable()  | 
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 | 
Single<Void> | 
AmqpSender.rxEnd(AmqpMessage data)
Same as  but with an  
handler called when the operation completes | 
Single<Void> | 
AmqpSender.rxSendWithAck(AmqpMessage message)
Sends an AMQP message and waits for an acknowledgement. 
 | 
Single<Void> | 
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. | 
Single<Void> | 
AmqpReceiver.rxPipeTo(WriteStream<AmqpMessage> dst)
Pipe this  
ReadStream to the WriteStream. | 
Copyright © 2023 Eclipse. All rights reserved.