|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.wamblee.cache.EhCache<KeyType,ValueType>
public class EhCache<KeyType extends Serializable,ValueType extends Serializable>
Cache implemented on top of EhCache.
| Constructor Summary | |
|---|---|
EhCache(InputResource aResource,
String aCacheName)
Constructs a cache based on EHCache. |
|
| Method Summary | |
|---|---|
void |
clear()
Removes all entries from the cache. |
ValueType |
get(KeyType aKey)
Retrieves a value from the cache. |
void |
put(KeyType aKey,
ValueType aValue)
Adds a key-value pair to the cache. |
void |
remove(KeyType aKey)
Removes an entry from the cache. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public EhCache(InputResource aResource,
String aCacheName)
throws IOException,
net.sf.ehcache.CacheException
aResource - Resource containing the configuration file for EHCache.aCacheName - Name of the cache to use. If a cache with this name does not
exist, one is created based on default settings.
IOException
net.sf.ehcache.CacheException| Method Detail |
|---|
public void put(KeyType aKey,
ValueType aValue)
Cache
put in interface Cache<KeyType extends Serializable,ValueType extends Serializable>aKey - Key.aValue - Value.public ValueType get(KeyType aKey)
Cache
get in interface Cache<KeyType extends Serializable,ValueType extends Serializable>aKey - Key to retrieve.
public void remove(KeyType aKey)
Cache
remove in interface Cache<KeyType extends Serializable,ValueType extends Serializable>aKey - Key to remove the entry for.public void clear()
Cache
clear in interface Cache<KeyType extends Serializable,ValueType extends Serializable>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||