Uses of Class
io.vertx.mutiny.amqp.AmqpMessage
Packages that use AmqpMessage
-
Uses of AmqpMessage in io.vertx.mutiny.amqp
Fields in io.vertx.mutiny.amqp with type parameters of type AmqpMessageMethods in io.vertx.mutiny.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(io.vertx.amqp.AmqpMessage delegate) Creates a new instance of theAmqpMessage.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.mutiny.amqp that return types with arguments of type AmqpMessageModifier and TypeMethodDescriptionAmqpReceiver.pipe()Pause this stream and return aPipeto transfer the elements of this stream to a destinationWriteStream.AmqpReceiver.toBlockingIterable()AmqpReceiver.toBlockingStream()io.smallrye.mutiny.Multi<AmqpMessage>AmqpReceiver.toMulti()AmqpSender.toSubscriber()Converts the current write stream to a subscriber.Methods in io.vertx.mutiny.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.io.smallrye.mutiny.Uni<Void>AmqpSender.end(AmqpMessage data) Same asAmqpSender.end()but writes some data to the stream before ending.voidAmqpSender.endAndAwait(AmqpMessage data) Same asAmqpSender.end()but writes some data to the stream before ending.AmqpSender.endAndForget(AmqpMessage data) Same asAmqpSender.end()but writes some data to the stream before ending.AmqpSender.send(AmqpMessage message) Sends an AMQP message.io.smallrye.mutiny.Uni<Void>AmqpSender.sendWithAck(AmqpMessage message) Sends an AMQP message and waits for an acknowledgement.voidAmqpSender.sendWithAckAndAwait(AmqpMessage message) Sends an AMQP message and waits for an acknowledgement.AmqpSender.sendWithAckAndForget(AmqpMessage message) Sends an AMQP message and waits for an acknowledgement.io.smallrye.mutiny.Uni<Void>AmqpSender.write(AmqpMessage data) Write some data to the stream.voidAmqpSender.writeAndAwait(AmqpMessage data) Write some data to the stream.AmqpSender.writeAndForget(AmqpMessage data) Write some data to the stream.Method parameters in io.vertx.mutiny.amqp with type arguments of type AmqpMessageModifier and TypeMethodDescriptionAmqpReceiver.handler(Consumer<AmqpMessage> handler) io.smallrye.mutiny.Uni<Void>AmqpReceiver.pipeTo(WriteStream<AmqpMessage> dst) Pipe thisReadStreamto theWriteStream.voidAmqpReceiver.pipeToAndAwait(WriteStream<AmqpMessage> dst) Pipe thisReadStreamto theWriteStream.AmqpReceiver.pipeToAndForget(WriteStream<AmqpMessage> dst) Pipe thisReadStreamto theWriteStream.