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 arg) static <T> Message<T>
Message.newInstance
(io.vertx.core.eventbus.Message arg, TypeArg<T> __typeArg_T) <R> Message<R>
Message.replyAndRequestAndAwait
(Object message) Blocking variant ofreplyAndRequest(Object)
.<R> Message<R>
Message.replyAndRequestAndAwait
(Object message, io.vertx.core.eventbus.DeliveryOptions options) Blocking variant ofreplyAndRequest(Object,DeliveryOptions)
.<T> Message<T>
EventBus.requestAndAwait
(String address, Object message) Blocking variant ofEventBus.request(String,Object)
.<T> Message<T>
EventBus.requestAndAwait
(String address, Object message, io.vertx.core.eventbus.DeliveryOptions options) Blocking variant ofEventBus.request(String,Object,DeliveryOptions)
.Methods in io.vertx.mutiny.core.eventbus that return types with arguments of type MessageModifier and TypeMethodDescriptionMessageConsumer.pipe()
<R> io.smallrye.mutiny.Uni<Message<R>>
Message.replyAndRequest
(Object message) Reply to this message, specifying areplyHandler
for the reply - i.e.<R> io.smallrye.mutiny.Uni<Message<R>>
Message.replyAndRequest
(Object message, io.vertx.core.eventbus.DeliveryOptions options) LikereplyAndRequest(java.lang.Object)
but specifyingoptions
that can be used to configure the delivery.<T> io.smallrye.mutiny.Uni<Message<T>>
Sends a message and specify areplyHandler
that will be called if the recipient subsequently replies to the message.<T> io.smallrye.mutiny.Uni<Message<T>>
LikeEventBus.request(java.lang.String, java.lang.Object)
but specifyingoptions
that 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>
<T> MessageConsumer<T>
EventBus.localConsumer
(String address, Consumer<Message<T>> handler) io.smallrye.mutiny.Uni<Void>
MessageConsumer.pipeTo
(WriteStream<Message<T>> dst) Pipe thisReadStream
to theWriteStream
.MessageConsumer.pipeToAndAwait
(WriteStream<Message<T>> dst) Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)
.void
MessageConsumer.pipeToAndForget
(WriteStream<Message<T>> dst) Variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)
that ignores the result of the operation.