open fun <T : Any> localConsumer(address: String): MessageConsumer<T>
Like io.vertx.reactivex.core.eventbus.EventBus#consumer but the address won't be propagated across the cluster.
address - the address to register it at
Return
the event bus message consumer
open fun <T : Any> localConsumer(address: String, handler: Handler<Message<T>>): MessageConsumer<T>
Like io.vertx.reactivex.core.eventbus.EventBus#consumer but the address won't be propagated across the cluster.
address - the address that will register it at
handler - the handler that will process the received messages
Return
the event bus message consumer