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. 
com.opensymphony.oscache.plugins.clustersupport Provides support for broadcasting flush events so that OSCache can function across a cluster. 
 

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, Class clazz)
          Register a listener for Cache events.
 void Cache.removeCacheEventListener(CacheEventListener listener, 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.
 

Uses of CacheEventListener in com.opensymphony.oscache.plugins.clustersupport
 

Classes in com.opensymphony.oscache.plugins.clustersupport that implement CacheEventListener
 class AbstractBroadcastingListener
          Implementation of a CacheEntryEventListener.
 class JavaGroupsBroadcastingListener
          A concrete implementation of the AbstractBroadcastingListener based on the JavaGroups library.
 class JMS10BroadcastingListener
          A JMS 1.0.x based clustering implementation.
 class JMSBroadcastingListener
          A JMS based clustering implementation.
 


OSCache Project Page