Uses of Interface
net.sf.ehcache.pool.Pool
-
Packages that use Pool Package Description 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 implementationsnet.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 Modifier and Type Method Description PoolCacheManager. getOnDiskPool()Return this cache manager's shared on-disk poolPoolCacheManager. getOnHeapPool()Return this cache manager's shared on-heap poolMethods in net.sf.ehcache with parameters of type Pool Modifier and Type Method Description StoreFeaturesManager. 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 Modifier and Type Class Description classAbstractPoolAn abstract pool implementation.classBoundedPoolA 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.classStrictlyBoundedPoolA pool which strictly obeys to its bound: it will never allow the accessors to consume more bytes than what has been configured.classUnboundedPoolA no-op pool which does not enforce any resource consumption limit.Methods in net.sf.ehcache.pool.impl that return Pool Modifier and Type Method Description protected PoolAbstractPoolAccessor. getPool()Return the pool this accessor is associated with.Constructors in net.sf.ehcache.pool.impl with parameters of type Pool Constructor Description 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 Modifier and Type Method Description static StoreMemoryStore. create(Ehcache cache, Pool pool)A factory method to create a MemoryStore.Constructors in net.sf.ehcache.store with parameters of type Pool Constructor Description 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 Modifier and Type Method Description static OnHeapCachingTier<java.lang.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 Modifier and Type Method Description static DiskStoreDiskStore. create(Ehcache cache, Pool onHeapPool, Pool onDiskPool)Creates a persitent-to-disk store for the given cache, using the given disk path.static StoreDiskStore. createCacheStore(Ehcache cache, Pool onHeapPool, Pool onDiskPool)Create a DiskBackedMemoryStore instance
-