Class ForwardingConcurrentMap<K,V> 
java.lang.Object
com.google.common.collect.ForwardingObject
com.google.common.collect.ForwardingMap<K,V>
 
com.google.common.collect.ForwardingConcurrentMap<K,V> 
- All Implemented Interfaces:
- ConcurrentMap<K,,- V> - Map<K,- V> 
@GwtCompatible
public abstract class ForwardingConcurrentMap<K,V> 
extends ForwardingMap<K,V>
implements ConcurrentMap<K,V>  
A concurrent map which forwards all its method calls to another concurrent map. Subclasses should
 override one or more methods to modify the behavior of the backing map as desired per the decorator pattern.
 
default method warning: This class forwards calls to only some 
 default methods. Specifically, it forwards calls only for methods that existed before
 default methods were introduced. For newer methods, like forEach, it inherits
 their default implementations. When those implementations invoke methods, they invoke methods on
 the ForwardingConcurrentMap.
- Since:
- 2.0
- Author:
- Charles Fry
- 
Nested Class SummaryNested classes/interfaces inherited from class com.google.common.collect.ForwardingMapForwardingMap.StandardEntrySet, ForwardingMap.StandardKeySet, ForwardingMap.StandardValues
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedConstructor for use by subclasses.
- 
Method SummaryModifier and TypeMethodDescriptionprotected abstract ConcurrentMap<K, V> delegate()Returns the backing delegate instance that methods are forwarded to.putIfAbsent(K key, V value) booleanbooleanMethods inherited from class com.google.common.collect.ForwardingMapclear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, standardClear, standardContainsKey, standardContainsValue, standardEquals, standardHashCode, standardIsEmpty, standardPutAll, standardRemove, standardToString, valuesMethods inherited from class com.google.common.collect.ForwardingObjecttoStringMethods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.concurrent.ConcurrentMapcompute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, replaceAll
- 
Constructor Details- 
ForwardingConcurrentMapprotected ForwardingConcurrentMap()Constructor for use by subclasses.
 
- 
- 
Method Details- 
delegateDescription copied from class:ForwardingObjectReturns the backing delegate instance that methods are forwarded to. Abstract subclasses generally override this method with an abstract method that has a more specific return type, such asForwardingSet.delegate(). Concrete subclasses override this method to supply the instance being decorated.- Specified by:
- delegatein class- ForwardingMap<K,- V> 
 
- 
putIfAbsent- Specified by:
- putIfAbsentin interface- ConcurrentMap<K,- V> 
- Specified by:
- putIfAbsentin interface- Map<K,- V> 
 
- 
remove
- 
replace
- 
replace
 
-