vertx / io.vertx.reactivex.core.eventbus / Message / rxReply

rxReply

open fun <R : Any> rxReply(message: Any): Single<Message<R>>

The same as reply(R message) but you can specify handler for the reply - i.e. to receive the reply to the reply.

Parameters

message - the message to reply with.

Return

open fun <R : Any> rxReply(message: Any, options: DeliveryOptions): Single<Message<R>>

The same as reply(R message, DeliveryOptions) but you can specify handler for the reply - i.e. to receive the reply to the reply.

Parameters

message - the reply message

options - the delivery options

Return