Uses of Interface
com.opensymphony.oscache.base.persistence.PersistenceListener

Packages that use PersistenceListener
com.opensymphony.oscache.base Provides the base classes and interfaces that make up the core of OSCache.  
com.opensymphony.oscache.base.algorithm Provides the classes that implement the caching algorithms used by OSCache, all of which are based on a derivative of Doug Lea's ConcurrentReaderHashMap.  
com.opensymphony.oscache.base.persistence Provides the interfaces that provide persistence storage of cached objects.  
com.opensymphony.oscache.plugins.diskpersistence Provides support for persisting cached objects to disk.  
 

Uses of PersistenceListener in com.opensymphony.oscache.base
 

Methods in com.opensymphony.oscache.base that return PersistenceListener
 PersistenceListener Cache.getPersistenceListener()
          Retrieves the currently configured PersistenceListener.
 

Methods in com.opensymphony.oscache.base with parameters of type PersistenceListener
 void Cache.setPersistenceListener(PersistenceListener listener)
          Set the listener to use for data persistence.
 

Uses of PersistenceListener in com.opensymphony.oscache.base.algorithm
 

Fields in com.opensymphony.oscache.base.algorithm declared as PersistenceListener
protected  PersistenceListener AbstractConcurrentReadCache.persistenceListener
          Persistence listener.
 

Methods in com.opensymphony.oscache.base.algorithm that return PersistenceListener
 PersistenceListener AbstractConcurrentReadCache.getPersistenceListener()
          Get the persistence listener.
 

Methods in com.opensymphony.oscache.base.algorithm with parameters of type PersistenceListener
 void AbstractConcurrentReadCache.setPersistenceListener(PersistenceListener listener)
          Set the persistence listener to use.
 

Uses of PersistenceListener in com.opensymphony.oscache.base.persistence
 

Methods in com.opensymphony.oscache.base.persistence that return PersistenceListener
 PersistenceListener PersistenceListener.configure(Config config)
          Allow the persistence code to initialize itself based on the supplied cache configuration.
 

Uses of PersistenceListener in com.opensymphony.oscache.plugins.diskpersistence
 

Classes in com.opensymphony.oscache.plugins.diskpersistence that implement PersistenceListener
 class AbstractDiskPersistenceListener
          Persist the cache data to disk.
 class DiskPersistenceListener
          Persist the cache data to disk.
 class HashDiskPersistenceListener
          Persists cache data to disk.
 

Methods in com.opensymphony.oscache.plugins.diskpersistence that return PersistenceListener
 PersistenceListener HashDiskPersistenceListener.configure(Config config)
          Initializes the HashDiskPersistenceListener.
 PersistenceListener AbstractDiskPersistenceListener.configure(Config config)
          Initialises this DiskPersistenceListener using the supplied configuration.
 


OSCache Project Page