ehcache

Uses of Interface
net.sf.ehcache.loader.CacheLoader

Packages that use CacheLoader
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.jcache This package contains an implementation of JSR-107: the JCACHE API. 
net.sf.ehcache.loader This package contains a cache loaders and associated factories. 
 

Uses of CacheLoader in net.sf.ehcache
 

Methods in net.sf.ehcache that return CacheLoader
 CacheLoader Ehcache.getCacheLoader()
          Gets the CacheLoader registered in this cache
 CacheLoader Cache.getCacheLoader()
          Gets the CacheLoader registered in this cache
 

Methods in net.sf.ehcache with parameters of type CacheLoader
(package private)  edu.emory.mathcs.backport.java.util.concurrent.Future Cache.asynchronousLoad(java.lang.Object key, CacheLoader specificLoader, java.lang.Object argument)
          Does the asynchronous loading.
 Element Ehcache.getWithLoader(java.lang.Object key, CacheLoader loader, java.lang.Object loaderArgument)
          Warning: This method is related to the JSR107 specification, which is in draft.
 Element Cache.getWithLoader(java.lang.Object key, CacheLoader loader, java.lang.Object loaderArgument)
          Warning: This method is related to the JSR107 specification, which is in draft.
 void Ehcache.setCacheLoader(CacheLoader cacheLoader)
          Setter for the CacheLoader.
 void Cache.setCacheLoader(CacheLoader cacheLoader)
          Setter for the CacheLoader.
 

Uses of CacheLoader in net.sf.ehcache.config
 

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

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

Methods in net.sf.ehcache.constructs.blocking that return CacheLoader
 CacheLoader BlockingCache.getCacheLoader()
          Gets the CacheLoader registered in this cache
 

Methods in net.sf.ehcache.constructs.blocking with parameters of type CacheLoader
 Element BlockingCache.getWithLoader(java.lang.Object key, CacheLoader loader, java.lang.Object loaderArgument)
          This method is not appropriate to use with BlockingCache.
 void BlockingCache.setCacheLoader(CacheLoader cacheLoader)
          This method is not appropriate to use with BlockingCache.
 

Uses of CacheLoader in net.sf.ehcache.jcache
 

Methods in net.sf.ehcache.jcache that return CacheLoader
 CacheLoader JCache.getCacheLoader()
          Gets the CacheLoader registered in this cache
 

Methods in net.sf.ehcache.jcache with parameters of type CacheLoader
 java.lang.Object JCache.get(java.lang.Object key, CacheLoader loader)
          The get method will return, from the cache, the object associated with the argument "key".
 java.lang.Object JCache.get(java.lang.Object key, CacheLoader loader, java.lang.Object loaderArgument)
          The get method will return, from the cache, the object associated with the argument "key".
 void JCache.setCacheLoader(CacheLoader cacheLoader)
          Setter for the CacheLoader.
 

Constructors in net.sf.ehcache.jcache with parameters of type CacheLoader
JCache(Ehcache cache, CacheLoader cacheLoader)
          A constructor for JCache.
 

Uses of CacheLoader in net.sf.ehcache.loader
 

Methods in net.sf.ehcache.loader that return CacheLoader
abstract  CacheLoader CacheLoaderFactory.createCacheLoader(java.util.Properties properties)
          Creates a CacheLoader using the Ehcache configuration mechanism at the time the associated cache is created.
 


ehcache