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.constructs The constructs package builds on top of the core ehcache classes to create implementations for common caching patterns. 
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 Cache.getBootstrapCacheLoader()
          Accessor for the BootstrapCacheLoader associated with this cache.
 BootstrapCacheLoader Ehcache.getBootstrapCacheLoader()
          Accessor for the BootstrapCacheLoader associated with this cache.
 

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

Constructors in net.sf.ehcache with parameters of type BootstrapCacheLoader
Cache(CacheConfiguration cacheConfiguration, RegisteredEventListeners registeredEventListeners, BootstrapCacheLoader bootstrapCacheLoader)
          2.0 and higher Constructor

The ConfigurationFactory and clients can create these.

Cache(String name, int maxElementsInMemory, MemoryStoreEvictionPolicy memoryStoreEvictionPolicy, boolean overflowToDisk, 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(String name, int maxElementsInMemory, MemoryStoreEvictionPolicy memoryStoreEvictionPolicy, boolean overflowToDisk, 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(String name, int maxElementsInMemory, MemoryStoreEvictionPolicy memoryStoreEvictionPolicy, boolean overflowToDisk, String diskStorePath, boolean eternal, long timeToLiveSeconds, long timeToIdleSeconds, boolean diskPersistent, long diskExpiryThreadIntervalSeconds, RegisteredEventListeners registeredEventListeners, BootstrapCacheLoader bootstrapCacheLoader, int maxElementsOnDisk, int diskSpoolBufferSizeMB)
          1.3 Constructor

The ConfigurationFactory and clients can create these.

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

The ConfigurationFactory and clients can create these.

Cache(String name, int maxElementsInMemory, MemoryStoreEvictionPolicy memoryStoreEvictionPolicy, boolean overflowToDisk, String diskStorePath, boolean eternal, long timeToLiveSeconds, long timeToIdleSeconds, boolean diskPersistent, long diskExpiryThreadIntervalSeconds, RegisteredEventListeners registeredEventListeners, BootstrapCacheLoader bootstrapCacheLoader, int maxElementsOnDisk, int diskSpoolBufferSizeMB, boolean clearOnFlush, boolean isTerracottaClustered, String terracottaValueMode, boolean terracottaCoherentReads)
          1.7.0 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(Properties properties)
          Create a BootstrapCacheLoader
 

Uses of BootstrapCacheLoader in net.sf.ehcache.constructs
 

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

Methods in net.sf.ehcache.constructs with parameters of type BootstrapCacheLoader
 void EhcacheDecoratorAdapter.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(Properties properties)
          Create a BootstrapCacheLoader
 


ehcache

true