protected final class ConcurrentReferenceHashMap.Segment
extends java.util.concurrent.locks.ReentrantLock
Modifier and Type | Field and Description |
---|---|
private int |
count
The total number of references contained in this segment.
|
private int |
initialSize |
private ConcurrentReferenceHashMap.ReferenceManager |
referenceManager |
private ConcurrentReferenceHashMap.Reference<K,V>[] |
references
Array of references indexed using the low order bits from the hash.
|
private int |
resizeThreshold
The threshold when resizing of the references should occur.
|
Constructor and Description |
---|
Segment(int initialCapacity) |
Modifier and Type | Method and Description |
---|---|
void |
clear()
Clear all items from this segment.
|
private ConcurrentReferenceHashMap.Reference<K,V>[] |
createReferenceArray(int size) |
<T> T |
doTask(int hash,
java.lang.Object key,
ConcurrentReferenceHashMap.Task<T> task)
Apply an update operation to this segment.
|
private ConcurrentReferenceHashMap.Reference<K,V> |
findInChain(ConcurrentReferenceHashMap.Reference<K,V> ref,
java.lang.Object key,
int hash) |
int |
getCount()
Return the total number of references in this segment.
|
private int |
getIndex(int hash,
ConcurrentReferenceHashMap.Reference<K,V>[] references) |
ConcurrentReferenceHashMap.Reference<K,V> |
getReference(java.lang.Object key,
int hash,
ConcurrentReferenceHashMap.Restructure restructure) |
int |
getSize()
Return the size of the current references array.
|
protected void |
restructureIfNecessary(boolean allowResize)
Restructure the underlying data structure when it becomes necessary.
|
getHoldCount, getOwner, getQueuedThreads, getQueueLength, getWaitingThreads, getWaitQueueLength, hasQueuedThread, hasQueuedThreads, hasWaiters, isFair, isHeldByCurrentThread, isLocked, lock, lockInterruptibly, newCondition, toString, tryLock, tryLock, unlock
private final ConcurrentReferenceHashMap.ReferenceManager referenceManager
private final int initialSize
private volatile ConcurrentReferenceHashMap.Reference<K,V>[] references
resizeThreshold
.private volatile int count
private int resizeThreshold
count
exceeds this value references will be resized.@Nullable public ConcurrentReferenceHashMap.Reference<K,V> getReference(@Nullable java.lang.Object key, int hash, ConcurrentReferenceHashMap.Restructure restructure)
@Nullable public <T> T doTask(int hash, @Nullable java.lang.Object key, ConcurrentReferenceHashMap.Task<T> task)
hash
- the hash of the keykey
- the keytask
- the update operationpublic void clear()
protected final void restructureIfNecessary(boolean allowResize)
allowResize
- if resizing is permitted@Nullable private ConcurrentReferenceHashMap.Reference<K,V> findInChain(ConcurrentReferenceHashMap.Reference<K,V> ref, @Nullable java.lang.Object key, int hash)
private ConcurrentReferenceHashMap.Reference<K,V>[] createReferenceArray(int size)
private int getIndex(int hash, ConcurrentReferenceHashMap.Reference<K,V>[] references)
public final int getSize()
public final int getCount()