ehcache

Uses of Interface
net.sf.ehcache.bootstrap.BootstrapCacheLoader

Packages that use BootstrapCacheLoader
net.sf.ehcache This package contains the public API for using ehcache. 
net.sf.ehcache.bootstrap This package contains the bootstrap cache loader interface and abstract factory. 
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.distribution This package is for cache replication. 
 

Uses of BootstrapCacheLoader in net.sf.ehcache
 

Methods in net.sf.ehcache that return BootstrapCacheLoader
 BootstrapCacheLoader Ehcache.getBootstrapCacheLoader()
          Accessor for the BootstrapCacheLoader associated with this cache.
 BootstrapCacheLoader Cache.getBootstrapCacheLoader()
          Accessor for the BootstrapCacheLoader associated with this cache.
 

Methods in net.sf.ehcache with parameters of type BootstrapCacheLoader
 void Ehcache.setBootstrapCacheLoader(BootstrapCacheLoader bootstrapCacheLoader)
          Sets the bootstrap cache loader.
 void Cache.setBootstrapCacheLoader(BootstrapCacheLoader bootstrapCacheLoader)
          Sets the bootstrap cache loader.
 

Constructors in net.sf.ehcache with parameters of type BootstrapCacheLoader
Cache(java.lang.String name, int maxElementsInMemory, MemoryStoreEvictionPolicy memoryStoreEvictionPolicy, boolean overflowToDisk, java.lang.String diskStorePath, boolean eternal, long timeToLiveSeconds, long timeToIdleSeconds, boolean diskPersistent, long diskExpiryThreadIntervalSeconds, RegisteredEventListeners registeredEventListeners, BootstrapCacheLoader bootstrapCacheLoader)
          1.2.1 Constructor

The ConfigurationFactory and clients can create these.

Cache(java.lang.String name, int maxElementsInMemory, MemoryStoreEvictionPolicy memoryStoreEvictionPolicy, boolean overflowToDisk, java.lang.String diskStorePath, boolean eternal, long timeToLiveSeconds, long timeToIdleSeconds, boolean diskPersistent, long diskExpiryThreadIntervalSeconds, RegisteredEventListeners registeredEventListeners, BootstrapCacheLoader bootstrapCacheLoader, int maxElementsOnDisk)
          1.2.4 Constructor

The ConfigurationFactory and clients can create these.

Cache(java.lang.String name, int maxElementsInMemory, MemoryStoreEvictionPolicy memoryStoreEvictionPolicy, boolean overflowToDisk, java.lang.String diskStorePath, boolean eternal, long timeToLiveSeconds, long timeToIdleSeconds, boolean diskPersistent, long diskExpiryThreadIntervalSeconds, RegisteredEventListeners registeredEventListeners, BootstrapCacheLoader bootstrapCacheLoader, int maxElementsOnDisk, int diskSpoolBufferSizeMB)
          1.2.4 Constructor

The ConfigurationFactory and clients can create these.

 

Uses of BootstrapCacheLoader in net.sf.ehcache.bootstrap
 

Methods in net.sf.ehcache.bootstrap that return BootstrapCacheLoader
abstract  BootstrapCacheLoader BootstrapCacheLoaderFactory.createBootstrapCacheLoader(java.util.Properties properties)
          Create a BootstrapCacheLoader
 

Uses of BootstrapCacheLoader in net.sf.ehcache.config
 

Methods in net.sf.ehcache.config that return BootstrapCacheLoader
 BootstrapCacheLoader ConfigurationHelper.createBootstrapCacheLoader(CacheConfiguration.BootstrapCacheLoaderFactoryConfiguration factoryConfiguration)
          Tries to load a BootstrapCacheLoader from the class specified.
 

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

Methods in net.sf.ehcache.constructs.blocking that return BootstrapCacheLoader
 BootstrapCacheLoader BlockingCache.getBootstrapCacheLoader()
          Accessor for the BootstrapCacheLoader associated with this cache.
 

Methods in net.sf.ehcache.constructs.blocking with parameters of type BootstrapCacheLoader
 void BlockingCache.setBootstrapCacheLoader(BootstrapCacheLoader bootstrapCacheLoader)
          Sets the bootstrap cache loader.
 

Uses of BootstrapCacheLoader in net.sf.ehcache.distribution
 

Classes in net.sf.ehcache.distribution that implement BootstrapCacheLoader
 class RMIBootstrapCacheLoader
          Loads Elements from a random Cache Peer
 

Methods in net.sf.ehcache.distribution that return BootstrapCacheLoader
 BootstrapCacheLoader RMIBootstrapCacheLoaderFactory.createBootstrapCacheLoader(java.util.Properties properties)
          Create a BootstrapCacheLoader
 


ehcache