Package org.apache.ofbiz.base.util.cache
Interface CacheListener<K,V>
-
- All Known Implementing Classes:
UtilCacheTests.Listener
public interface CacheListener<K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
noteKeyAddition(UtilCache<K,V> cache, K key, V newValue)
void
noteKeyRemoval(UtilCache<K,V> cache, K key, V oldValue)
void
noteKeyUpdate(UtilCache<K,V> cache, K key, V newValue, V oldValue)
-