Package | Description |
---|---|
com.tangosol.net.cache |
Contains classes providing various caching strategies.
|
com.tangosol.util |
Contains various generic utilities.
|
Modifier and Type | Class and Description |
---|---|
class |
LocalCache.Entry
A holder for a cached value.
|
class |
OldCache.Entry
Deprecated.
A holder for a cached value.
|
Modifier and Type | Method and Description |
---|---|
SafeHashMap.Entry |
LocalCache.getEntry(Object oKey)
Locate an Entry in the hash map based on its key.
|
SafeHashMap.Entry |
OldCache.getEntry(Object oKey)
Deprecated.
Locate an Entry in the hash map based on its key.
|
protected SafeHashMap.Entry |
OldCache.getEntryInternal(Object oKey)
Deprecated.
Locate an Entry in the hash map based on its key.
|
protected SafeHashMap.Entry |
LocalCache.instantiateEntry()
Factory method.
|
protected SafeHashMap.Entry |
OldCache.instantiateEntry()
Deprecated.
Factory method.
|
Modifier and Type | Method and Description |
---|---|
protected void |
OldCache.Entry.copyFrom(SafeHashMap.Entry entry)
Copy this Entry's information from another Entry.
|
Modifier and Type | Class and Description |
---|---|
protected class |
ObservableHashMap.Entry<K,V>
A holder for a cached value.
|
Modifier and Type | Field and Description |
---|---|
protected SafeHashMap.Entry<K,V> |
SafeHashMap.Entry.m_eNext
The next entry in the linked list (an open hashing implementation).
|
Modifier and Type | Field and Description |
---|---|
protected AtomicReferenceArray<SafeHashMap.Entry> |
SafeHashMap.m_aeBucket
The array of hash buckets.
|
Modifier and Type | Method and Description |
---|---|
protected SafeHashMap.Entry |
SafeHashMap.cloneEntryList(SafeHashMap.Entry entryThat)
Clone an entire linked list of entries.
|
SafeHashMap.Entry<K,V> |
SafeHashMap.getEntry(Object key)
Locate an Entry in the hash map based on its key.
|
protected SafeHashMap.Entry<K,V> |
SafeHashMap.getEntryInternal(Object oKey)
Locate an Entry in the hash map based on its key.
|
protected SafeHashMap.Entry<K,V> |
SafeHashMap.instantiateEntry()
Factory pattern: instantiate an un-initialized Entry object.
|
protected SafeHashMap.Entry<K,V> |
ObservableHashMap.instantiateEntry()
Factory method.
|
protected SafeHashMap.Entry<K,V> |
SafeHashMap.instantiateEntry(K oKey,
V oValue,
int iHash)
Factory pattern: instantiate initialized Entry object.
|
Modifier and Type | Method and Description |
---|---|
protected AtomicReferenceArray<SafeHashMap.Entry> |
SafeHashMap.getStableBucketArray()
Get the bucket array, or if a resize is occurring, wait for the resize
to complete and return the new bucket array.
|
Modifier and Type | Method and Description |
---|---|
protected SafeHashMap.Entry |
SafeHashMap.cloneEntryList(SafeHashMap.Entry entryThat)
Clone an entire linked list of entries.
|
protected void |
SafeHashMap.Entry.copyFrom(SafeHashMap.Entry<K,V> entry)
Copy this Entry's information from another Entry.
|
protected void |
SafeHashMap.removeEntryInternal(SafeHashMap.Entry<K,V> entry)
Removes the passed Entry from the map.
|