Serialized Form


Package com.googlecode.concurrentlinkedhashmap

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

serialVersionUID: 1L

Serialization Methods

readObject

void readObject(ObjectInputStream stream)
          throws InvalidObjectException
Throws:
InvalidObjectException

writeReplace

Object writeReplace()
Serialized Fields

data

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


concurrencyLevel

int concurrencyLevel

segmentMask

int segmentMask

segmentShift

int segmentShift

segmentLock

Lock[] segmentLock

sentinel

com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap.Node sentinel

weightedSize

int weightedSize

maximumWeightedSize

int maximumWeightedSize

evictionLock

Lock evictionLock

globalRecencyOrder

int globalRecencyOrder

weigher

Weigher<V> weigher

writeQueue

Queue<E> writeQueue

capacityLimiter

CapacityLimiter capacityLimiter

recencyQueueLength

AtomicIntegerArray recencyQueueLength

recencyQueue

Queue<E>[] recencyQueue

listenerQueue

Queue<E> listenerQueue

listener

EvictionListener<K,V> listener



Copyright © 2010. All Rights Reserved.