See: Description
Interface | Description |
---|---|
CacheEntryFactory |
Creates objects to populate the cache.
|
UpdatingCacheEntryFactory |
A
CacheEntryFactory with one additional method, updateEntryValue((Serializable key, Serializable value)
which allows the cache entry to updated rather than replaced. |
Class | Description |
---|---|
BlockingCache |
A blocking decorator for an Ehcache, backed by a
Ehcache . |
BlockingCache.PutAction<V> |
Callable like class to actually execute one of the many Ehcache.put* methods in the context of a BlockingCache
|
SelfPopulatingCache |
A selfpopulating decorator for
Ehcache that creates entries on demand. |
UpdatingSelfPopulatingCache |
A
Cache backed cache that creates entries on demand. |
Exception | Description |
---|---|
LockTimeoutException |
Indicates that a timeout has occured while attempting to obtain a lock using
ReadWriteLockSync.tryLock(net.sf.ehcache.concurrent.LockType, long)
This is a normal runtime exception which should be handled by calling code. |