Class AsyncMap<K,V>
- All Implemented Interfaces:
MutinyDelegate
AsyncMap does not allow null to be used as a key or value.
NOTE: This class has been automatically generated from the original non Mutiny-ified interface.
- Author:
- Tim Fox
- Implementation Requirements:
- Implementations of the interface must handle
ClusterSerializableimplementing objects. - See Also:
-
AsyncMap
-
Field Summary
FieldsModifier and TypeFieldDescription -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<Void>clear()Clear all entries in the mapvoidClear all entries in the mapClear all entries in the mapbooleanio.smallrye.mutiny.Uni<V>Get a value from the map, asynchronously.getAndAwait(K k) Get a value from the map, asynchronously.getAndForget(K k) Get a value from the map, asynchronously.Get the delegate instance.inthashCode()keys()Get the keys of the map, asynchronously.Get the keys of the map, asynchronously.Get the keys of the map, asynchronously.static <K,V> AsyncMap<K, V> newInstance(io.vertx.core.shareddata.AsyncMap<K, V> delegate) Creates a new instance of theAsyncMap.static <K,V> AsyncMap<K, V> newInstance(io.vertx.core.shareddata.AsyncMap<K, V> delegate, TypeArg<K> typeArg_0, TypeArg<V> typeArg_1) Creates a new instance of theAsyncMap.io.smallrye.mutiny.Uni<Void>Put a value in the map, asynchronously.io.smallrye.mutiny.Uni<Void>Likeput(K, V)but specifying a time to live for the entry.voidputAndAwait(K k, V v) Put a value in the map, asynchronously.voidputAndAwait(K k, V v, long ttl) Likeput(K, V)but specifying a time to live for the entry.putAndForget(K k, V v) Put a value in the map, asynchronously.putAndForget(K k, V v, long ttl) Likeput(K, V)but specifying a time to live for the entry.io.smallrye.mutiny.Uni<V>putIfAbsent(K k, V v) Put the entry only if there is no entry with the key already present.io.smallrye.mutiny.Uni<V>putIfAbsent(K k, V v, long ttl) LinkputIfAbsent(K, V)but specifying a time to live for the entry.putIfAbsentAndAwait(K k, V v) Put the entry only if there is no entry with the key already present.putIfAbsentAndAwait(K k, V v, long ttl) LinkputIfAbsent(K, V)but specifying a time to live for the entry.putIfAbsentAndForget(K k, V v) Put the entry only if there is no entry with the key already present.putIfAbsentAndForget(K k, V v, long ttl) LinkputIfAbsent(K, V)but specifying a time to live for the entry.io.smallrye.mutiny.Uni<V>Remove a value from the map, asynchronously.removeAndAwait(K k) Remove a value from the map, asynchronously.removeAndForget(K k) Remove a value from the map, asynchronously.io.smallrye.mutiny.Uni<Boolean>removeIfPresent(K k, V v) Remove a value from the map, only if entry already exists with same value.removeIfPresentAndAwait(K k, V v) Remove a value from the map, only if entry already exists with same value.removeIfPresentAndForget(K k, V v) Remove a value from the map, only if entry already exists with same value.io.smallrye.mutiny.Uni<V>Replace the entry only if it is currently mapped to some valueio.smallrye.mutiny.Uni<V>Replace the entry only if it is currently mapped to some valuereplaceAndAwait(K k, V v) Replace the entry only if it is currently mapped to some valuereplaceAndAwait(K k, V v, long ttl) Replace the entry only if it is currently mapped to some valuereplaceAndForget(K k, V v) Replace the entry only if it is currently mapped to some valuereplaceAndForget(K k, V v, long ttl) Replace the entry only if it is currently mapped to some valueio.smallrye.mutiny.Uni<Boolean>replaceIfPresent(K k, V oldValue, V newValue) Replace the entry only if it is currently mapped to a specific valueio.smallrye.mutiny.Uni<Boolean>replaceIfPresent(K k, V oldValue, V newValue, long ttl) Replace the entry only if it is currently mapped to a specific valuereplaceIfPresentAndAwait(K k, V oldValue, V newValue) Replace the entry only if it is currently mapped to a specific valuereplaceIfPresentAndAwait(K k, V oldValue, V newValue, long ttl) Replace the entry only if it is currently mapped to a specific valuereplaceIfPresentAndForget(K k, V oldValue, V newValue) Replace the entry only if it is currently mapped to a specific valuereplaceIfPresentAndForget(K k, V oldValue, V newValue, long ttl) Replace the entry only if it is currently mapped to a specific valueio.smallrye.mutiny.Uni<Integer>size()Provide the number of entries in the mapProvide the number of entries in the mapProvide the number of entries in the maptoString()values()Get the values of the map, asynchronously.Get the values of the map, asynchronously.Get the values of the map, asynchronously.
-
Field Details
-
__TYPE_ARG
-
__typeArg_0
-
__typeArg_1
-
-
Constructor Details
-
AsyncMap
-
Method Details
-
getDelegate
Get the delegate instance.This method returns the instance on which this shim is delegating the calls. And so, give you access to the bare API.
- Specified by:
getDelegatein interfaceMutinyDelegate- Returns:
- the delegate instance
-
get
Get a value from the map, asynchronously.Unlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Parameters:
k- the key- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
io.vertx.core.shareddata.AsyncMap#get(K)
-
getAndAwait
Get a value from the map, asynchronously.Unlike the bare Vert.x variant, this method returns a
AsyncMap. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Parameters:
k- the key- Returns:
- The operation result
- See Also:
-
io.vertx.core.shareddata.AsyncMap#get(K)
-
getAndForget
Get a value from the map, asynchronously.Unlike the bare Vert.x variant, this method ignores the
AsyncMapresult or any failure.- Parameters:
k- the key- Returns:
- The current instance to chain operations if needed.
- See Also:
-
io.vertx.core.shareddata.AsyncMap#get(K)
-
put
Put a value in the map, asynchronously.Unlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Parameters:
k- the keyv- the value- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
io.vertx.core.shareddata.AsyncMap#put(K, V)
-
putAndAwait
Put a value in the map, asynchronously.Unlike the bare Vert.x variant, this method returns a
Void. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Parameters:
k- the keyv- the value- See Also:
-
io.vertx.core.shareddata.AsyncMap#put(K, V)
-
putAndForget
Put a value in the map, asynchronously.Unlike the bare Vert.x variant, this method ignores the
Voidresult or any failure.- Parameters:
k- the keyv- the value- Returns:
- The current instance to chain operations if needed.
- See Also:
-
io.vertx.core.shareddata.AsyncMap#put(K, V)
-
put
Likeput(K, V)but specifying a time to live for the entry. Entry will expire and get evicted after the ttl.Unlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Parameters:
k- the keyv- the valuettl- The time to live (in ms) for the entry- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
io.vertx.core.shareddata.AsyncMap#put(K, V, long)
-
putAndAwait
Likeput(K, V)but specifying a time to live for the entry. Entry will expire and get evicted after the ttl.Unlike the bare Vert.x variant, this method returns a
Void. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Parameters:
k- the keyv- the valuettl- The time to live (in ms) for the entry- See Also:
-
io.vertx.core.shareddata.AsyncMap#put(K, V, long)
-
putAndForget
Likeput(K, V)but specifying a time to live for the entry. Entry will expire and get evicted after the ttl.Unlike the bare Vert.x variant, this method ignores the
Voidresult or any failure.- Parameters:
k- the keyv- the valuettl- The time to live (in ms) for the entry- Returns:
- The current instance to chain operations if needed.
- See Also:
-
io.vertx.core.shareddata.AsyncMap#put(K, V, long)
-
putIfAbsent
Put the entry only if there is no entry with the key already present. If key already present then the existing value will be returned to the handler, otherwise null.Unlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Parameters:
k- the keyv- the value- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
io.vertx.core.shareddata.AsyncMap#putIfAbsent(K, V)
-
putIfAbsentAndAwait
Put the entry only if there is no entry with the key already present. If key already present then the existing value will be returned to the handler, otherwise null.Unlike the bare Vert.x variant, this method returns a
AsyncMap. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Parameters:
k- the keyv- the value- Returns:
- The operation result
- See Also:
-
io.vertx.core.shareddata.AsyncMap#putIfAbsent(K, V)
-
putIfAbsentAndForget
Put the entry only if there is no entry with the key already present. If key already present then the existing value will be returned to the handler, otherwise null.Unlike the bare Vert.x variant, this method ignores the
AsyncMapresult or any failure.- Parameters:
k- the keyv- the value- Returns:
- The current instance to chain operations if needed.
- See Also:
-
io.vertx.core.shareddata.AsyncMap#putIfAbsent(K, V)
-
putIfAbsent
LinkputIfAbsent(K, V)but specifying a time to live for the entry. Entry will expire and get evicted after the ttl.Unlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Parameters:
k- the keyv- the valuettl- The time to live (in ms) for the entry- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
io.vertx.core.shareddata.AsyncMap#putIfAbsent(K, V, long)
-
putIfAbsentAndAwait
LinkputIfAbsent(K, V)but specifying a time to live for the entry. Entry will expire and get evicted after the ttl.Unlike the bare Vert.x variant, this method returns a
AsyncMap. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Parameters:
k- the keyv- the valuettl- The time to live (in ms) for the entry- Returns:
- The operation result
- See Also:
-
io.vertx.core.shareddata.AsyncMap#putIfAbsent(K, V, long)
-
putIfAbsentAndForget
LinkputIfAbsent(K, V)but specifying a time to live for the entry. Entry will expire and get evicted after the ttl.Unlike the bare Vert.x variant, this method ignores the
AsyncMapresult or any failure.- Parameters:
k- the keyv- the valuettl- The time to live (in ms) for the entry- Returns:
- The current instance to chain operations if needed.
- See Also:
-
io.vertx.core.shareddata.AsyncMap#putIfAbsent(K, V, long)
-
remove
Remove a value from the map, asynchronously.Unlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Parameters:
k- the key- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
io.vertx.core.shareddata.AsyncMap#remove(K)
-
removeAndAwait
Remove a value from the map, asynchronously.Unlike the bare Vert.x variant, this method returns a
AsyncMap. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Parameters:
k- the key- Returns:
- The operation result
- See Also:
-
io.vertx.core.shareddata.AsyncMap#remove(K)
-
removeAndForget
Remove a value from the map, asynchronously.Unlike the bare Vert.x variant, this method ignores the
AsyncMapresult or any failure.- Parameters:
k- the key- Returns:
- The current instance to chain operations if needed.
- See Also:
-
io.vertx.core.shareddata.AsyncMap#remove(K)
-
removeIfPresent
Remove a value from the map, only if entry already exists with same value.Unlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Parameters:
k- the keyv- the value- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
io.vertx.core.shareddata.AsyncMap#removeIfPresent(K, V)
-
removeIfPresentAndAwait
Remove a value from the map, only if entry already exists with same value.Unlike the bare Vert.x variant, this method returns a
Boolean. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Parameters:
k- the keyv- the value- Returns:
- The operation result
- See Also:
-
io.vertx.core.shareddata.AsyncMap#removeIfPresent(K, V)
-
removeIfPresentAndForget
Remove a value from the map, only if entry already exists with same value.Unlike the bare Vert.x variant, this method ignores the
Booleanresult or any failure.- Parameters:
k- the keyv- the value- Returns:
- The current instance to chain operations if needed.
- See Also:
-
io.vertx.core.shareddata.AsyncMap#removeIfPresent(K, V)
-
replace
Replace the entry only if it is currently mapped to some valueUnlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Parameters:
k- the keyv- the new value- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
io.vertx.core.shareddata.AsyncMap#replace(K, V)
-
replaceAndAwait
Replace the entry only if it is currently mapped to some valueUnlike the bare Vert.x variant, this method returns a
AsyncMap. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Parameters:
k- the keyv- the new value- Returns:
- The operation result
- See Also:
-
io.vertx.core.shareddata.AsyncMap#replace(K, V)
-
replaceAndForget
Replace the entry only if it is currently mapped to some valueUnlike the bare Vert.x variant, this method ignores the
AsyncMapresult or any failure.- Parameters:
k- the keyv- the new value- Returns:
- The current instance to chain operations if needed.
- See Also:
-
io.vertx.core.shareddata.AsyncMap#replace(K, V)
-
replace
Replace the entry only if it is currently mapped to some valueUnlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Parameters:
k- the keyv- the new valuettl- The time to live (in ms) for the entry- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
io.vertx.core.shareddata.AsyncMap#replace(K, V, long)
-
replaceAndAwait
Replace the entry only if it is currently mapped to some valueUnlike the bare Vert.x variant, this method returns a
AsyncMap. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Parameters:
k- the keyv- the new valuettl- The time to live (in ms) for the entry- Returns:
- The operation result
- See Also:
-
io.vertx.core.shareddata.AsyncMap#replace(K, V, long)
-
replaceAndForget
Replace the entry only if it is currently mapped to some valueUnlike the bare Vert.x variant, this method ignores the
AsyncMapresult or any failure.- Parameters:
k- the keyv- the new valuettl- The time to live (in ms) for the entry- Returns:
- The current instance to chain operations if needed.
- See Also:
-
io.vertx.core.shareddata.AsyncMap#replace(K, V, long)
-
replaceIfPresent
@CheckReturnValue public io.smallrye.mutiny.Uni<Boolean> replaceIfPresent(K k, V oldValue, V newValue) Replace the entry only if it is currently mapped to a specific valueUnlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Parameters:
k- the keyoldValue- the existing valuenewValue- the new value- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
io.vertx.core.shareddata.AsyncMap#replaceIfPresent(K, V, V)
-
replaceIfPresentAndAwait
Replace the entry only if it is currently mapped to a specific valueUnlike the bare Vert.x variant, this method returns a
Boolean. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Parameters:
k- the keyoldValue- the existing valuenewValue- the new value- Returns:
- The operation result
- See Also:
-
io.vertx.core.shareddata.AsyncMap#replaceIfPresent(K, V, V)
-
replaceIfPresentAndForget
Replace the entry only if it is currently mapped to a specific valueUnlike the bare Vert.x variant, this method ignores the
Booleanresult or any failure.- Parameters:
k- the keyoldValue- the existing valuenewValue- the new value- Returns:
- The current instance to chain operations if needed.
- See Also:
-
io.vertx.core.shareddata.AsyncMap#replaceIfPresent(K, V, V)
-
replaceIfPresent
@CheckReturnValue public io.smallrye.mutiny.Uni<Boolean> replaceIfPresent(K k, V oldValue, V newValue, long ttl) Replace the entry only if it is currently mapped to a specific valueUnlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Parameters:
k- the keyoldValue- the existing valuenewValue- the new valuettl- The time to live (in ms) for the entry- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
io.vertx.core.shareddata.AsyncMap#replaceIfPresent(K, V, V, long)
-
replaceIfPresentAndAwait
Replace the entry only if it is currently mapped to a specific valueUnlike the bare Vert.x variant, this method returns a
Boolean. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Parameters:
k- the keyoldValue- the existing valuenewValue- the new valuettl- The time to live (in ms) for the entry- Returns:
- The operation result
- See Also:
-
io.vertx.core.shareddata.AsyncMap#replaceIfPresent(K, V, V, long)
-
replaceIfPresentAndForget
Replace the entry only if it is currently mapped to a specific valueUnlike the bare Vert.x variant, this method ignores the
Booleanresult or any failure.- Parameters:
k- the keyoldValue- the existing valuenewValue- the new valuettl- The time to live (in ms) for the entry- Returns:
- The current instance to chain operations if needed.
- See Also:
-
io.vertx.core.shareddata.AsyncMap#replaceIfPresent(K, V, V, long)
-
clear
Clear all entries in the mapUnlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
AsyncMap.clear()
-
clearAndAwait
public void clearAndAwait()Clear all entries in the mapUnlike the bare Vert.x variant, this method returns a
Void. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- See Also:
-
AsyncMap.clear()
-
clearAndForget
Clear all entries in the mapUnlike the bare Vert.x variant, this method ignores the
Voidresult or any failure.- Returns:
- The current instance to chain operations if needed.
- See Also:
-
AsyncMap.clear()
-
size
Provide the number of entries in the mapUnlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
AsyncMap.size()
-
sizeAndAwait
Provide the number of entries in the mapUnlike the bare Vert.x variant, this method returns a
Integer. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Returns:
- The operation result
- See Also:
-
AsyncMap.size()
-
sizeAndForget
Provide the number of entries in the mapUnlike the bare Vert.x variant, this method ignores the
Integerresult or any failure.- Returns:
- The current instance to chain operations if needed.
- See Also:
-
AsyncMap.size()
-
keys
Get the keys of the map, asynchronously.Use this method with care as the map may contain a large number of keys, which may not fit entirely in memory of a single node. In this case, the invocation will result in an
OutOfMemoryError.Unlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
AsyncMap.keys()
-
keysAndAwait
Get the keys of the map, asynchronously.Use this method with care as the map may contain a large number of keys, which may not fit entirely in memory of a single node. In this case, the invocation will result in an
OutOfMemoryError.Unlike the bare Vert.x variant, this method returns a
Set<K>. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Returns:
- The operation result
- See Also:
-
AsyncMap.keys()
-
keysAndForget
Get the keys of the map, asynchronously.Use this method with care as the map may contain a large number of keys, which may not fit entirely in memory of a single node. In this case, the invocation will result in an
OutOfMemoryError.Unlike the bare Vert.x variant, this method ignores the
Set<K>result or any failure.- Returns:
- The current instance to chain operations if needed.
- See Also:
-
AsyncMap.keys()
-
values
Get the values of the map, asynchronously.Use this method with care as the map may contain a large number of values, which may not fit entirely in memory of a single node. In this case, the invocation will result in an
OutOfMemoryError.Unlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
AsyncMap.values()
-
valuesAndAwait
Get the values of the map, asynchronously.Use this method with care as the map may contain a large number of values, which may not fit entirely in memory of a single node. In this case, the invocation will result in an
OutOfMemoryError.Unlike the bare Vert.x variant, this method returns a
List<V>. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Returns:
- The operation result
- See Also:
-
AsyncMap.values()
-
valuesAndForget
Get the values of the map, asynchronously.Use this method with care as the map may contain a large number of values, which may not fit entirely in memory of a single node. In this case, the invocation will result in an
OutOfMemoryError.Unlike the bare Vert.x variant, this method ignores the
List<V>result or any failure.- Returns:
- The current instance to chain operations if needed.
- See Also:
-
AsyncMap.values()
-
hashCode
public int hashCode() -
equals
-
toString
-