Class WriteThroughEntry<K,V>
- java.lang.Object
-
- java.util.AbstractMap.SimpleEntry<K,V>
-
- com.github.benmanes.caffeine.cache.WriteThroughEntry<K,V>
-
- All Implemented Interfaces:
java.io.Serializable
,java.util.Map.Entry<K,V>
final class WriteThroughEntry<K,V> extends java.util.AbstractMap.SimpleEntry<K,V>
An entry that allows updates to write through to the backing map.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.concurrent.ConcurrentMap<K,V>
map
(package private) static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description WriteThroughEntry(java.util.concurrent.ConcurrentMap<K,V> map, K key, V value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description V
setValue(V value)
(package private) java.lang.Object
writeReplace()
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
- See Also:
- Constant Field Values
-
-