Package javax.cache.event
-
Interface Summary Interface Description CacheEntryCreatedListener<K,V> Invoked if a cache entry is created, for example through aCache.put(Object, Object)operation or the action of aCacheLoader.CacheEntryExpiredListener<K,V> Invoked if a cache entry is evicted because of expiration.CacheEntryListener<K,V> Tagging interface for cache entry listeners.CacheEntryReadListener<K,V> Invoked if a cache entry is read, for example through aCache.get(Object)call.CacheEntryRemovedListener<K,V> Invoked if a cache entry is removed, for example through aCache.remove(Object)call.CacheEntryUpdatedListener<K,V> Invoked if an existing cache entry is updated, for example through aCache.put(Object, Object)or aCacheLoaderoperation . -
Class Summary Class Description CacheEntryEvent<K,V> A Cache event base class -
Exception Summary Exception Description CacheEntryListenerException An exception to indicate a problem has occurred with a listener.