Uses of Class
io.vertx.mutiny.core.shareddata.AsyncMap
Packages that use AsyncMap
-
Uses of AsyncMap in io.vertx.mutiny.core.shareddata
Fields in io.vertx.mutiny.core.shareddata with type parameters of type AsyncMapMethods in io.vertx.mutiny.core.shareddata that return AsyncMapModifier and TypeMethodDescriptionAsyncMap.clearAndForget()Clear all entries in the mapAsyncMap.getAndForget(K k) Get a value from the map, asynchronously.<K,V> AsyncMap<K, V> SharedData.getAsyncMapAndAwait(String name) Get theAsyncMapwith the specified name.<K,V> AsyncMap<K, V> SharedData.getClusterWideMapAndAwait(String name) Get the cluster wide map with the specified name.<K,V> AsyncMap<K, V> SharedData.getLocalAsyncMapAndAwait(String name) Get theAsyncMapwith the specified name.AsyncMap.keysAndForget()Get the keys of the map, asynchronously.static <K,V> AsyncMap<K, V> AsyncMap.newInstance(io.vertx.core.shareddata.AsyncMap<K, V> delegate) Creates a new instance of theAsyncMap.static <K,V> AsyncMap<K, V> AsyncMap.newInstance(io.vertx.core.shareddata.AsyncMap<K, V> delegate, TypeArg<K> typeArg_0, TypeArg<V> typeArg_1) Creates a new instance of theAsyncMap.AsyncMap.putAndForget(K k, V v) Put a value in the map, asynchronously.AsyncMap.putAndForget(K k, V v, long ttl) Likeput(K, V)but specifying a time to live for the entry.AsyncMap.putIfAbsentAndForget(K k, V v) Put the entry only if there is no entry with the key already present.AsyncMap.putIfAbsentAndForget(K k, V v, long ttl) LinkputIfAbsent(K, V)but specifying a time to live for the entry.AsyncMap.removeAndForget(K k) Remove a value from the map, asynchronously.AsyncMap.removeIfPresentAndForget(K k, V v) Remove a value from the map, only if entry already exists with same value.AsyncMap.replaceAndForget(K k, V v) Replace the entry only if it is currently mapped to some valueAsyncMap.replaceAndForget(K k, V v, long ttl) Replace the entry only if it is currently mapped to some valueAsyncMap.replaceIfPresentAndForget(K k, V oldValue, V newValue) Replace the entry only if it is currently mapped to a specific valueAsyncMap.replaceIfPresentAndForget(K k, V oldValue, V newValue, long ttl) Replace the entry only if it is currently mapped to a specific valueAsyncMap.sizeAndForget()Provide the number of entries in the mapAsyncMap.valuesAndForget()Get the values of the map, asynchronously.Methods in io.vertx.mutiny.core.shareddata that return types with arguments of type AsyncMapModifier and TypeMethodDescription<K,V> io.smallrye.mutiny.Uni<AsyncMap<K, V>> SharedData.getAsyncMap(String name) Get theAsyncMapwith the specified name.<K,V> io.smallrye.mutiny.Uni<AsyncMap<K, V>> SharedData.getClusterWideMap(String name) Get the cluster wide map with the specified name.<K,V> io.smallrye.mutiny.Uni<AsyncMap<K, V>> SharedData.getLocalAsyncMap(String name) Get theAsyncMapwith the specified name.