Uses of Interface
com.opensymphony.oscache.base.events.CacheEventListener

Packages that use CacheEventListener
com.opensymphony.oscache.base Provides the base classes and interfaces that make up the core of OSCache.  
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 CacheEventListener in com.opensymphony.oscache.base
 

Methods in com.opensymphony.oscache.base that return CacheEventListener
protected  CacheEventListener[] AbstractCacheAdministrator.getCacheEventListeners()
          Retrieves an array containing instances all of the CacheEventListener classes that are specified in the OSCache configuration file.
 

Methods in com.opensymphony.oscache.base with parameters of type CacheEventListener
 void Cache.addCacheEventListener(CacheEventListener listener, java.lang.Class clazz)
          Register a listener for Cache events.
 void Cache.removeCacheEventListener(CacheEventListener listener, java.lang.Class clazz)
          Unregister a listener for Cache events.
 

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

Subinterfaces of CacheEventListener in com.opensymphony.oscache.base.events
 interface CacheEntryEventListener
          This is the interface to listen to cache entry events.
 interface CacheMapAccessEventListener
          This is the interface to listen to cache map access events.
 interface ScopeEventListener
          This is the interface to listen to scope events.
 

Uses of CacheEventListener in com.opensymphony.oscache.extra
 

Classes in com.opensymphony.oscache.extra that implement CacheEventListener
 class CacheEntryEventListenerImpl
          Implementation of a CacheEntryEventListener.
 class CacheMapAccessEventListenerImpl
          Implementation of a CacheMapAccessEventListener.
 class ScopeEventListenerImpl
          Implementation of a ScopeEventListener that keeps track of the scope flush events.
 


See www.opensymphony.com for more information.