|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use LruHashMap.Entry | |
---|---|
org.apache.hadoop.hbase.regionserver |
Uses of LruHashMap.Entry in org.apache.hadoop.hbase.regionserver |
---|
Fields in org.apache.hadoop.hbase.regionserver declared as LruHashMap.Entry | |
---|---|
protected LruHashMap.Entry<K,V> |
LruHashMap.Entry.next
The next entry in the hash chain (for collisions) |
protected LruHashMap.Entry<K,V> |
LruHashMap.Entry.nextPtr
The next entry in the LRU list (towards MRU) |
protected LruHashMap.Entry<K,V> |
LruHashMap.Entry.prevPtr
The previous entry in the LRU list (towards LRU) |
Methods in org.apache.hadoop.hbase.regionserver that return LruHashMap.Entry | |
---|---|
LruHashMap.Entry |
LruHashMap.getHeadPtr()
Get the head of the linked list (least recently used). |
protected LruHashMap.Entry<K,V> |
LruHashMap.Entry.getNextPtr()
Returns the next pointer for the entry in teh LRU. |
protected LruHashMap.Entry<K,V> |
LruHashMap.Entry.getPrevPtr()
Returns the previous pointer for the entry in the LRU. |
LruHashMap.Entry |
LruHashMap.getTailPtr()
Get the tail of the linked list (most recently used). |
Methods in org.apache.hadoop.hbase.regionserver that return types with arguments of type LruHashMap.Entry | |
---|---|
List<LruHashMap.Entry<K,V>> |
LruHashMap.entryLruList()
Debugging function that returns a List sorted by access time. |
Set<LruHashMap.Entry<K,V>> |
LruHashMap.entryTableSet()
Debugging function that returns a Set of all entries in the hash table. |
Methods in org.apache.hadoop.hbase.regionserver with parameters of type LruHashMap.Entry | |
---|---|
protected void |
LruHashMap.Entry.setNextPtr(LruHashMap.Entry<K,V> nextPtr)
Sets the next pointer for the entry in the LRU. |
protected void |
LruHashMap.Entry.setPrevPtr(LruHashMap.Entry<K,V> prevPtr)
Sets the previous pointer for the entry in the LRU. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |