public class CopyOnUpdateMap<K,V> extends Object implements ConcurrentMap<K,V>
| Constructor and Description | 
|---|
| CopyOnUpdateMap() | 
| CopyOnUpdateMap(MapFactory<K,V> factory) | 
| Modifier and Type | Method and Description | 
|---|---|
| void | clear() | 
| boolean | containsKey(Object key) | 
| boolean | containsValue(Object value) | 
| Set<Map.Entry<K,V>> | entrySet() | 
| V | get(Object key) | 
| Map<K,V> | getUnsafeMapReference()Returns a reference to the underlying volatile map. | 
| boolean | isEmpty() | 
| Set<K> | keySet() | 
| V | put(K key,
   V value) | 
| void | putAll(Map<? extends K,? extends V> t) | 
| V | putIfAbsent(K key,
           V value) | 
| V | remove(Object key) | 
| boolean | remove(Object key,
      Object value) | 
| V | replace(K key,
       V value) | 
| boolean | replace(K key,
       V oldValue,
       V newValue) | 
| int | size() | 
| String | toString() | 
| Collection<V> | values() | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitcompute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, replaceAllpublic CopyOnUpdateMap()
public CopyOnUpdateMap(MapFactory<K,V> factory)
public Map<K,V> getUnsafeMapReference()
public boolean containsKey(Object key)
containsKey in interface Map<K,V>public boolean containsValue(Object value)
containsValue in interface Map<K,V>public V putIfAbsent(K key, V value)
putIfAbsent in interface ConcurrentMap<K,V>putIfAbsent in interface Map<K,V>Copyright © GigaSpaces.