Uses of Class
javax.cache.event.CacheEntryEvent

Packages that use CacheEntryEvent
javax.cache.event This package contains event listener interfaces. 
 

Uses of CacheEntryEvent in javax.cache.event
 

Methods in javax.cache.event with parameters of type CacheEntryEvent
 void CacheEntryCreatedListener.entryCreated(CacheEntryEvent<? extends K,? extends V> event)
          Called after the entry has been created (put into the cache where no previous mapping existed).
 void CacheEntryExpiredListener.entryExpired(CacheEntryEvent<? extends K,? extends V> entry)
          Called after the entry has expired and has thus been removed from the Cache.
 void CacheEntryReadListener.entryRead(CacheEntryEvent<? extends K,? extends V> event)
          Called after the entry has been read.
 void CacheEntryRemovedListener.entryRemoved(CacheEntryEvent<? extends K,? extends V> event)
          Called after the entry has been removed.
 void CacheEntryUpdatedListener.entryUpdated(CacheEntryEvent<? extends K,? extends V> event)
          Called after the entry has been updated (put into the cache where a previous mapping existed).
 



Copyright © 2012. All Rights Reserved.