Uses of Class
com.opensymphony.oscache.base.events.CacheEntryEvent

Packages that use CacheEntryEvent
com.opensymphony.oscache.base.events Provides the base classes and interfaces that allow pluggable event handlers to be incorporated into OSCache.  
com.opensymphony.oscache.extra Provides some basic event handler implementations that aren't essential to the core OSCache code, but form a useful starting point for basic logging or further development.  
 

Uses of CacheEntryEvent in com.opensymphony.oscache.base.events
 

Methods in com.opensymphony.oscache.base.events with parameters of type CacheEntryEvent
 void CacheEntryEventListener.cacheEntryAdded(CacheEntryEvent event)
          Event fired when an entry is added to the cache.
 void CacheEntryEventListener.cacheEntryFlushed(CacheEntryEvent event)
          Event fired when an entry is flushed from the cache.
 void CacheEntryEventListener.cacheEntryRemoved(CacheEntryEvent event)
          Event fired when an entry is removed from the cache.
 void CacheEntryEventListener.cacheEntryUpdated(CacheEntryEvent event)
          Event fired when an entry is updated in the cache.
 

Uses of CacheEntryEvent in com.opensymphony.oscache.extra
 

Methods in com.opensymphony.oscache.extra with parameters of type CacheEntryEvent
 void CacheEntryEventListenerImpl.cacheEntryAdded(CacheEntryEvent event)
          Handles the event fired when an entry is added in the cache.
 void CacheEntryEventListenerImpl.cacheEntryFlushed(CacheEntryEvent event)
          Handles the event fired when an entry is flushed from the cache.
 void CacheEntryEventListenerImpl.cacheEntryRemoved(CacheEntryEvent event)
          Handles the event fired when an entry is removed from the cache.
 void CacheEntryEventListenerImpl.cacheEntryUpdated(CacheEntryEvent event)
          Handles the event fired when an entry is updated in the cache.
 


See www.opensymphony.com for more information.