Uses of Class
io.vertx.rxjava3.core.eventbus.Message
-
Packages that use Message Package Description io.vertx.rxjava3.core.eventbus -
-
Uses of Message in io.vertx.rxjava3.core.eventbus
Fields in io.vertx.rxjava3.core.eventbus with type parameters of type Message Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<Message>
Message. __TYPE_ARG
Methods in io.vertx.rxjava3.core.eventbus that return Message Modifier and Type Method Description Message<T>
DeliveryContext. message()
static <T> Message<T>
Message. newInstance(Message arg)
static <T> Message<T>
Message. newInstance(Message arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
Methods in io.vertx.rxjava3.core.eventbus that return types with arguments of type Message Modifier and Type Method Description Pipe<Message<T>>
MessageConsumer. pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .<R> Single<Message<R>>
Message. replyAndRequest(Object message)
Reply to this message, specifying areplyHandler
for the reply - i.e.<R> Single<Message<R>>
Message. replyAndRequest(Object message, DeliveryOptions options)
LikereplyAndRequest(java.lang.Object)
but specifyingoptions
that can be used to configure the delivery.<T> Single<Message<T>>
EventBus. request(String address, Object message)
Sends a message and specify areplyHandler
that will be called if the recipient subsequently replies to the message.<T> Single<Message<T>>
EventBus. request(String address, Object message, DeliveryOptions options)
LikeEventBus.request(java.lang.String, java.lang.Object)
but specifyingoptions
that can be used to configure the delivery.<R> Single<Message<R>>
Message. rxReplyAndRequest(Object message)
Reply to this message, specifying areplyHandler
for the reply - i.e.<R> Single<Message<R>>
Message. rxReplyAndRequest(Object message, DeliveryOptions options)
LikereplyAndRequest(java.lang.Object)
but specifyingoptions
that can be used to configure the delivery.<T> Single<Message<T>>
EventBus. rxRequest(String address, Object message)
Sends a message and specify areplyHandler
that will be called if the recipient subsequently replies to the message.<T> Single<Message<T>>
EventBus. rxRequest(String address, Object message, DeliveryOptions options)
LikeEventBus.request(java.lang.String, java.lang.Object)
but specifyingoptions
that can be used to configure the delivery.Flowable<Message<T>>
MessageConsumer. toFlowable()
Observable<Message<T>>
MessageConsumer. toObservable()
Method parameters in io.vertx.rxjava3.core.eventbus with type arguments of type Message Modifier and Type Method Description <T> MessageConsumer<T>
EventBus. consumer(String address, Handler<Message<T>> handler)
Create a consumer and register it against the specified address.MessageConsumer<T>
MessageConsumer. handler(Handler<Message<T>> handler)
<T> MessageConsumer<T>
EventBus. localConsumer(String address, Handler<Message<T>> handler)
LikeEventBus.consumer(java.lang.String)
but the address won't be propagated across the cluster.Completable
MessageConsumer. pipeTo(WriteStream<Message<T>> dst)
Pipe thisReadStream
to theWriteStream
.Completable
MessageConsumer. rxPipeTo(WriteStream<Message<T>> dst)
Pipe thisReadStream
to theWriteStream
.
-