ConcurrentMappublic interface ConcurrentMap implements MapA {@link java.util.Map} providing additional atomic
putIfAbsent, remove, and replace methods. |
Methods Summary |
---|
public V | putIfAbsent(K key, V value)If the specified key is not already associated
with a value, associate it with the given value.
This is equivalent to
if (!map.containsKey(key))
return map.put(key, value);
else
return map.get(key);
Except that the action is performed atomically.
| public boolean | remove(java.lang.Object key, java.lang.Object value)Remove entry for key only if currently mapped to given value.
Acts as
if ((map.containsKey(key) && map.get(key).equals(value)) {
map.remove(key);
return true;
} else return false;
except that the action is performed atomically.
| public boolean | replace(K key, V oldValue, V newValue)Replace entry for key only if currently mapped to given value.
Acts as
if ((map.containsKey(key) && map.get(key).equals(oldValue)) {
map.put(key, newValue);
return true;
} else return false;
except that the action is performed atomically.
| public V | replace(K key, V value)Replace entry for key only if currently mapped to some value.
Acts as
if ((map.containsKey(key)) {
return map.put(key, value);
} else return null;
except that the action is performed atomically.
|
|