Uses of Class
io.vertx.reactivex.amqp.AmqpMessage
Packages that use AmqpMessage
-
Uses of AmqpMessage in io.vertx.reactivex.amqp
Classes in io.vertx.reactivex.amqp that implement interfaces with type arguments of type AmqpMessageModifier and TypeClassDescriptionclassInterface used to consume AMQP message as a stream of message.classAMQP Sender interface used to send messages.Fields in io.vertx.reactivex.amqp with type parameters of type AmqpMessageModifier and TypeFieldDescriptionstatic final io.vertx.lang.rx.TypeArg<AmqpMessage> AmqpMessage.__TYPE_ARGMethods in io.vertx.reactivex.amqp that return AmqpMessageModifier and TypeMethodDescriptionAmqpMessage.accepted()When receiving a message, and when auto-acknowledgement is disabled, this method is used to acknowledge the incoming message.AmqpMessageBuilder.build()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 asmodified.static AmqpMessageAmqpMessage.newInstance(AmqpMessage arg) AmqpMessage.rejected()When receiving a message, and when auto-acknowledgement is disabled, this method is used to acknowledge the incoming message asrejected.AmqpMessage.released()When receiving a message, and when auto-acknowledgement is disabled, this method is used to acknowledge the incoming message asreleased.Methods in io.vertx.reactivex.amqp that return types with arguments of type AmqpMessageModifier and TypeMethodDescriptionAmqpSender.drainHandler(Handler<Void> handler) Set a drain handler on the stream.AmqpReceiver.pipe()Pause this stream and return a to transfer the elements of this stream to a destination .AmqpReceiver.toFlowable()AmqpReceiver.toObservable()AmqpSender.toObserver()AmqpSender.toSubscriber()Methods in io.vertx.reactivex.amqp with parameters of type AmqpMessageModifier and TypeMethodDescriptionstatic AmqpMessageBuilderAmqpMessage.create(AmqpMessage existing) Creates a builder to create a newAmqpMessagecopying the metadata from the passed message.AmqpSender.end(AmqpMessage data) Same asWriteStream.end()but writes some data to the stream before ending.AmqpSender.rxEnd(AmqpMessage data) Same asWriteStream.end()but writes some data to the stream before ending.AmqpSender.rxSendWithAck(AmqpMessage message) Sends an AMQP message and waits for an acknowledgement.AmqpSender.rxWrite(AmqpMessage data) Write some data to the stream.AmqpSender.send(AmqpMessage message) Sends an AMQP message.AmqpSender.sendWithAck(AmqpMessage message) Sends an AMQP message and waits for an acknowledgement.AmqpSender.write(AmqpMessage data) Write some data to the stream.Method parameters in io.vertx.reactivex.amqp with type arguments of type AmqpMessageModifier and TypeMethodDescriptionAmqpReceiver.handler(Handler<AmqpMessage> handler) AmqpReceiver.pipeTo(WriteStream<AmqpMessage> dst) Pipe thisReadStreamto theWriteStream.AmqpReceiver.rxPipeTo(WriteStream<AmqpMessage> dst) Pipe thisReadStreamto theWriteStream.