Interface CacheListener<K,V>


public interface CacheListener<K,V>
  • Method Details

    • noteKeyRemoval

      void noteKeyRemoval(UtilCache<K,V> cache, K key, V oldValue)
    • noteKeyAddition

      void noteKeyAddition(UtilCache<K,V> cache, K key, V newValue)
    • noteKeyUpdate

      void noteKeyUpdate(UtilCache<K,V> cache, K key, V newValue, V oldValue)