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.constructs.classloader ClassLoader contstructs package 
net.sf.ehcache.distribution This package is for cache replication. 
net.sf.ehcache.store Store package. 
net.sf.ehcache.terracotta This package contains the Terracotta integration functionalities. 
 

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
 

Classes in net.sf.ehcache.bootstrap with type parameters of type BootstrapCacheLoader
 class BootstrapCacheLoaderFactory<T extends BootstrapCacheLoader>
          An abstract factory for creating BootstrapCacheLoader instances.
 

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.constructs.classloader
 

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

Methods in net.sf.ehcache.constructs.classloader with parameters of type BootstrapCacheLoader
 void ClassLoaderAwareCache.setBootstrapCacheLoader(BootstrapCacheLoader arg0)
          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
 

Uses of BootstrapCacheLoader in net.sf.ehcache.store
 

Classes in net.sf.ehcache.store that implement BootstrapCacheLoader
 class DiskStoreBootstrapCacheLoader
           
 class MemoryLimitedCacheLoader
          Abstract class for BootstrapCacheLoader implementers that should alter their load behavior (probably stop loading) whenever the cache being bootstrapped has reached its in-memory limit (off- or on-heap)
 

Uses of BootstrapCacheLoader in net.sf.ehcache.terracotta
 

Classes in net.sf.ehcache.terracotta that implement BootstrapCacheLoader
 class TerracottaBootstrapCacheLoader
          A BootstrapCacheLoader that will load Elements into a Terracotta clustered cache, based on a previously snapshotted key set.
 


ehcache

Copyright © 2003-2012 Terracotta, Inc.. All Rights Reserved.