Uses of Class
javax.cache.event.CacheEntryEvent

Packages that use CacheEntryEvent
javax.cache.event This package contains listeners and scoping 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).
 

Method parameters in javax.cache.event with type arguments of type CacheEntryEvent
 void CacheEntryCreatedListener.entriesCreated(Iterable<CacheEntryEvent<? extends K,? extends V>> events)
          Called after the entries have been created (put into the cache where no previous mapping existed).
 void CacheEntryReadListener.entriesRead(Iterable<CacheEntryEvent<? extends K,? extends V>> events)
          Called after the entries have been read.
 void CacheEntryRemovedListener.entriesRemoved(Iterable<CacheEntryEvent<? extends K,? extends V>> events)
          Called after the entries have been removed by a batch operation.
 void CacheEntryUpdatedListener.entriesUpdated(Iterable<CacheEntryEvent<? extends K,? extends V>> events)
          Called after the entries have been updated (put into the cache where a previous mapping existed).
 



Copyright © 2011. All Rights Reserved.