ConcurrentMap
is available on Java 5+ anyway@Deprecated public interface ConcurrentMap extends Map
CollectionFactory.createConcurrentMap(int)
. Mirrors
ConcurrentMap
, allowing to be backed by a
JDK ConcurrentHashMap as well as a backport-concurrent ConcurrentHashMap.
Check out the ConcurrentMap javadoc
for details on the interface's methods.
Modifier and Type | Method and Description |
---|---|
Object |
putIfAbsent(Object key,
Object value)
Deprecated.
|
boolean |
remove(Object key,
Object value)
Deprecated.
|
Object |
replace(Object key,
Object value)
Deprecated.
|
boolean |
replace(Object key,
Object oldValue,
Object newValue)
Deprecated.
|
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, remove, replaceAll, size, values
Copyright © 2015. All rights reserved.