Class CacheEntryEvent<K,​V>

  • Type Parameters:
    K - the type of keys maintained by this cache
    V - the type of cached values
    All Implemented Interfaces:
    Serializable
    Direct Known Subclasses:
    CacheEntryEventImpl

    public abstract class CacheEntryEvent<K,​V>
    extends EventObject
    A Cache event base class
    Since:
    1.0
    See Also:
    Serialized Form
    • Constructor Detail

      • CacheEntryEvent

        public CacheEntryEvent​(Cache source)
        Constructs a cache entry event from a given cache as source
        Parameters:
        source - the cache that originated the event
    • Method Detail

      • getKey

        public abstract K getKey()
        Returns the key of the cache entry with the event
        Returns:
        the key
      • getValue

        public abstract V getValue()
        Returns the value of the cache entry with the event
        Returns:
        the value