net.sf.ehcache.constructs.blocking
public interface UpdatingCacheEntryFactory extends CacheEntryFactory
CacheEntryFactory
with one additional method, updateEntryValue((Serializable key, Serializable value)
which allows the cache entry to updated rather than replaced. This has the following
potential benefits:
Version: $Id: UpdatingCacheEntryFactory.java 124 2006-06-11 13:44:17Z gregluck $
Method Summary | |
---|---|
void | updateEntryValue(Object key, Object value)
Perform an incremental update of data within a CacheEntry.
|
Parameters: key the cache Key value a value copied from the value that belonged to the Element in the cache. Value must be mutable
Throws: Exception