ehcache

Uses of Interface
net.sf.ehcache.exceptionhandler.CacheExceptionHandler

Packages that use CacheExceptionHandler
net.sf.ehcache This package contains the public API for using ehcache. 
net.sf.ehcache.config This package contains the cache configuration code. 
net.sf.ehcache.constructs.blocking Doug Lea in his book Concurrent Programming in Java talks about concurrency support constructs. 
net.sf.ehcache.exceptionhandler This package is for exception handling. 
 

Uses of CacheExceptionHandler in net.sf.ehcache
 

Methods in net.sf.ehcache that return CacheExceptionHandler
 CacheExceptionHandler Ehcache.getCacheExceptionHandler()
          Sets an ExceptionHandler on the Cache.
 CacheExceptionHandler Cache.getCacheExceptionHandler()
          Gets the ExceptionHandler on this Cache, or null if there isn't one.
 

Methods in net.sf.ehcache with parameters of type CacheExceptionHandler
 void Ehcache.setCacheExceptionHandler(CacheExceptionHandler cacheExceptionHandler)
          Sets an ExceptionHandler on the Cache.
 void Cache.setCacheExceptionHandler(CacheExceptionHandler cacheExceptionHandler)
          Sets an ExceptionHandler on the Cache.
 

Uses of CacheExceptionHandler in net.sf.ehcache.config
 

Methods in net.sf.ehcache.config that return CacheExceptionHandler
 CacheExceptionHandler ConfigurationHelper.createCacheExceptionHandler(CacheConfiguration.CacheExceptionHandlerFactoryConfiguration factoryConfiguration)
          Tries to create a CacheLoader from the configuration using the factory specified.
 

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

Methods in net.sf.ehcache.constructs.blocking that return CacheExceptionHandler
 CacheExceptionHandler BlockingCache.getCacheExceptionHandler()
          Sets an ExceptionHandler on the Cache.
 

Methods in net.sf.ehcache.constructs.blocking with parameters of type CacheExceptionHandler
 void BlockingCache.setCacheExceptionHandler(CacheExceptionHandler cacheExceptionHandler)
          Sets an ExceptionHandler on the Cache.
 

Uses of CacheExceptionHandler in net.sf.ehcache.exceptionhandler
 

Methods in net.sf.ehcache.exceptionhandler that return CacheExceptionHandler
abstract  CacheExceptionHandler CacheExceptionHandlerFactory.createExceptionHandler(java.util.Properties properties)
          Create an CacheExceptionHandler
 


ehcache