ehcache

Uses of Interface
net.sf.ehcache.extension.CacheExtension

Packages that use CacheExtension
net.sf.ehcache This package contains the public API for using ehcache. 
net.sf.ehcache.constructs.blocking Doug Lea in his book Concurrent Programming in Java talks about concurrency support constructs. 
net.sf.ehcache.extension This package contains interfaces and classes for the cache extension mechanism. 
 

Uses of CacheExtension in net.sf.ehcache
 

Methods in net.sf.ehcache with parameters of type CacheExtension
 void Ehcache.registerCacheExtension(CacheExtension cacheExtension)
          Register a CacheExtension with the cache.
 void Cache.registerCacheExtension(CacheExtension cacheExtension)
          Register a CacheExtension with the cache.
 void Ehcache.unregisterCacheExtension(CacheExtension cacheExtension)
          Unregister a CacheExtension with the cache.
 void Cache.unregisterCacheExtension(CacheExtension cacheExtension)
          Unregister a CacheExtension with the cache.
 

Uses of CacheExtension in net.sf.ehcache.constructs.blocking
 

Methods in net.sf.ehcache.constructs.blocking with parameters of type CacheExtension
 void BlockingCache.registerCacheExtension(CacheExtension cacheExtension)
          Register a CacheExtension with the cache.
 void BlockingCache.unregisterCacheExtension(CacheExtension cacheExtension)
          Unregister a CacheExtension with the cache.
 

Uses of CacheExtension in net.sf.ehcache.extension
 

Methods in net.sf.ehcache.extension that return CacheExtension
 CacheExtension CacheExtension.clone(Ehcache cache)
          Creates a clone of this extension.
abstract  CacheExtension CacheExtensionFactory.createCacheExtension(Ehcache cache, java.util.Properties properties)
           
 


ehcache