Serialized Form


Package com.googlecode.concurrentlinkedhashmap

Class com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap extends java.util.AbstractMap<K,V> implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

void readObject(java.io.ObjectInputStream stream)
          throws java.io.InvalidObjectException
Throws:
java.io.InvalidObjectException

writeReplace

java.lang.Object writeReplace()
Serialized Fields

data

java.util.concurrent.ConcurrentMap<K,V> data
The backing data store holding the key-value associations.


concurrencyLevel

int concurrencyLevel

segmentMask

int segmentMask

segmentShift

int segmentShift

segmentLock

java.util.concurrent.locks.Lock[] segmentLock

sentinel

com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap.Node sentinel

weightedSize

int weightedSize

maximumWeightedSize

int maximumWeightedSize

evictionLock

java.util.concurrent.locks.Lock evictionLock

globalRecencyOrder

int globalRecencyOrder

weigher

Weigher<V> weigher

writeQueue

java.util.Queue<E> writeQueue

capacityLimiter

CapacityLimiter capacityLimiter

recencyQueueLength

java.util.concurrent.atomic.AtomicIntegerArray recencyQueueLength

recencyQueue

java.util.Queue<E>[] recencyQueue

listenerQueue

java.util.Queue<E> listenerQueue

listener

EvictionListener<K,V> listener



Copyright © 2011. All Rights Reserved.