|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.ojb.broker.cache.ObjectCacheSoftImpl.SoftHashMap
public static final class ObjectCacheSoftImpl.SoftHashMap
Kind of map using SoftReference to store values
| Nested Class Summary | |
|---|---|
private class |
ObjectCacheSoftImpl.SoftHashMap.SoftValue
Class derived from SoftReference, used to store the key of the map. |
| Field Summary | |
|---|---|
private org.apache.commons.collections.LRUMap |
hardCacheMap
The FIFO list of hard references, order of last access. |
private HashMap |
hash
The internal HashMap that will hold the SoftReference. |
private ReferenceQueue |
queue
Reference queue for cleared SoftReference objects. |
| Constructor Summary | |
|---|---|
ObjectCacheSoftImpl.SoftHashMap(int hardSize)
Construct a new hash map with the specified size |
|
| Method Summary | |
|---|---|
void |
clear()
Clear the map |
Object |
get(Object key)
Retrieve the value associated to a given key |
private void |
processQueue()
Removes keys and objects that have been garbaged |
Object |
put(Object key,
Object value)
Put the key, value pair into the HashMap using a SoftValue object |
Object |
remove(Object key)
Remove the entry for this key |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
private HashMap hash
private org.apache.commons.collections.LRUMap hardCacheMap
private ReferenceQueue queue
| Constructor Detail |
|---|
public ObjectCacheSoftImpl.SoftHashMap(int hardSize)
hardSize - the maximum capacity of this map| Method Detail |
|---|
public Object put(Object key,
Object value)
key - the keyvalue - the value
public Object get(Object key)
key - the key
public Object remove(Object key)
key - the key
public void clear()
private void processQueue()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||