ehcache

Uses of Interface
net.sf.ehcache.pool.Pool

Packages that use Pool
net.sf.ehcache This package contains the public API for using ehcache. 
net.sf.ehcache.pool.impl This package contains implementations of the resource pooling interfaces. 
net.sf.ehcache.store Store package. 
net.sf.ehcache.store.cachingtier Contains the caching tier implementations 
net.sf.ehcache.store.disk This package contains the disk store. 
 

Uses of Pool in net.sf.ehcache
 

Methods in net.sf.ehcache that return Pool
 Pool CacheManager.getOnDiskPool()
          Return this cache manager's shared on-disk pool
 Pool CacheManager.getOnHeapPool()
          Return this cache manager's shared on-heap pool
 

Methods in net.sf.ehcache with parameters of type Pool
 Store FeaturesManager.createStore(Cache cache, Pool onHeapPool, Pool onDiskPool)
          Create a store for the given cache.
 

Uses of Pool in net.sf.ehcache.pool.impl
 

Classes in net.sf.ehcache.pool.impl that implement Pool
 class AbstractPool
          An abstract pool implementation.
 class BoundedPool
          A pool which loosely obeys to its bound: it can allow the accessors to consume more bytes than what has been configured if that helps concurrency.
 class StrictlyBoundedPool
          A pool which strictly obeys to its bound: it will never allow the accessors to consume more bytes than what has been configured.
 class UnboundedPool
          A no-op pool which does not enforce any resource consumption limit.
 

Methods in net.sf.ehcache.pool.impl that return Pool
protected  Pool AbstractPoolAccessor.getPool()
          Return the pool this accessor is associated with.
 

Constructors in net.sf.ehcache.pool.impl with parameters of type Pool
AbstractPoolAccessor(Pool pool, PoolParticipant participant, SizeOfEngine sizeOfEngine)
          Creates an accessor for the specified participant to access the specified pool.
 

Uses of Pool in net.sf.ehcache.store
 

Methods in net.sf.ehcache.store with parameters of type Pool
static Store MemoryStore.create(Ehcache cache, Pool pool)
          A factory method to create a MemoryStore.
 

Constructors in net.sf.ehcache.store with parameters of type Pool
MemoryStore(Ehcache cache, Pool pool, MemoryStore.BackingFactory factory, SearchManager searchManager)
          Constructs things that all MemoryStores have in common.
 

Uses of Pool in net.sf.ehcache.store.cachingtier
 

Methods in net.sf.ehcache.store.cachingtier with parameters of type Pool
static OnHeapCachingTier<Object,Element> OnHeapCachingTier.createOnHeapCache(Ehcache cache, Pool onHeapPool)
          Factory method
 

Uses of Pool in net.sf.ehcache.store.disk
 

Methods in net.sf.ehcache.store.disk with parameters of type Pool
static DiskStore DiskStore.create(Ehcache cache, Pool onHeapPool, Pool onDiskPool)
          Creates a persitent-to-disk store for the given cache, using the given disk path.
static Store DiskStore.createCacheStore(Ehcache cache, Pool onHeapPool, Pool onDiskPool)
          Create a DiskBackedMemoryStore instance
 


ehcache

Copyright 2001-2016, Terracotta, Inc.