vertx / io.vertx.rxjava.core.shareddata / SharedData / rxGetAsyncMap

rxGetAsyncMap

open fun <K : Any, V : Any> rxGetAsyncMap(name: String): Single<AsyncMap<K, V>>

Get the io.vertx.rxjava.core.shareddata.AsyncMap with the specified name. When clustered, the map is accessible to all nodes in the cluster and data put into the map from any node is visible to to any other node.

WARNING: In clustered mode, asynchronous shared maps rely on distributed data structures provided by the cluster manager. Beware that the latency relative to asynchronous shared maps operations can be much higher in clustered than in local mode.

Parameters

name - the name of the map

Return