Uses of Class
io.vertx.mutiny.core.eventbus.Message
Packages that use Message
-
Uses of Message in io.vertx.mutiny.core.eventbus
Fields in io.vertx.mutiny.core.eventbus with type parameters of type MessageMethods in io.vertx.mutiny.core.eventbus that return MessageModifier and TypeMethodDescriptionDeliveryContext.message()static <T> Message<T>Message.newInstance(io.vertx.core.eventbus.Message<T> delegate) Creates a new instance of theMessage.static <T> Message<T>Message.newInstance(io.vertx.core.eventbus.Message<T> delegate, TypeArg<T> typeArg_0) Creates a new instance of theMessage.<R> Message<R>Message.replyAndRequestAndAwait(Object message) Reply to this message, specifying areplyHandlerfor the reply - i.e.<R> Message<R>Message.replyAndRequestAndAwait(Object message, io.vertx.core.eventbus.DeliveryOptions options) LikereplyAndRequest(Object)but specifyingoptionsthat can be used to configure the delivery.Message.replyAndRequestAndForget(Object message) Reply to this message, specifying areplyHandlerfor the reply - i.e.Message.replyAndRequestAndForget(Object message, io.vertx.core.eventbus.DeliveryOptions options) LikereplyAndRequest(Object)but specifyingoptionsthat can be used to configure the delivery.<T> Message<T>EventBus.requestAndAwait(String address, Object message) Sends a message and specify areplyHandlerthat will be called if the recipient subsequently replies to the message.<T> Message<T>EventBus.requestAndAwait(String address, Object message, io.vertx.core.eventbus.DeliveryOptions options) LikeEventBus.request(String, Object)but specifyingoptionsthat can be used to configure the delivery.Methods in io.vertx.mutiny.core.eventbus that return types with arguments of type MessageModifier and TypeMethodDescriptionMessageConsumer.pipe()Pause this stream and return aPipeto transfer the elements of this stream to a destinationWriteStream.<R> io.smallrye.mutiny.Uni<Message<R>>Message.replyAndRequest(Object message) Reply to this message, specifying areplyHandlerfor the reply - i.e.<R> io.smallrye.mutiny.Uni<Message<R>>Message.replyAndRequest(Object message, io.vertx.core.eventbus.DeliveryOptions options) LikereplyAndRequest(Object)but specifyingoptionsthat can be used to configure the delivery.<T> io.smallrye.mutiny.Uni<Message<T>>Sends a message and specify areplyHandlerthat will be called if the recipient subsequently replies to the message.<T> io.smallrye.mutiny.Uni<Message<T>>LikeEventBus.request(String, Object)but specifyingoptionsthat can be used to configure the delivery.MessageConsumer.toBlockingIterable()MessageConsumer.toBlockingStream()MessageConsumer.toMulti()Method parameters in io.vertx.mutiny.core.eventbus with type arguments of type MessageModifier and TypeMethodDescription<T> MessageConsumer<T>EventBus.consumer(io.vertx.core.eventbus.MessageConsumerOptions options, Consumer<Message<T>> handler) Create a consumer and register it against the specified options address.<T> MessageConsumer<T>Create a consumer and register it against the specified address.<T> MessageConsumer<T>EventBus.localConsumer(String address, Consumer<Message<T>> handler) Like#consumer(String, Handler)but the address won't be propagated across the cluster.io.smallrye.mutiny.Uni<Void>MessageConsumer.pipeTo(WriteStream<Message<T>> arg0) Pipe thisReadStreamto theWriteStream.voidMessageConsumer.pipeToAndAwait(WriteStream<Message<T>> arg0) Pipe thisReadStreamto theWriteStream.MessageConsumer.pipeToAndForget(WriteStream<Message<T>> arg0) Pipe thisReadStreamto theWriteStream.