ehcache

Uses of Interface
net.sf.ehcache.store.Policy

Packages that use Policy
net.sf.ehcache This package contains the public API for using ehcache. 
net.sf.ehcache.store Store package. 
net.sf.ehcache.transaction.xa This package contains the functionality to provide XA support to a transactional Cache. 
 

Uses of Policy in net.sf.ehcache
 

Methods in net.sf.ehcache that return Policy
 Policy Cache.getMemoryStoreEvictionPolicy()
           
 

Methods in net.sf.ehcache with parameters of type Policy
 void Cache.setMemoryStoreEvictionPolicy(Policy policy)
          Sets the eviction policy strategy.
 

Uses of Policy in net.sf.ehcache.store
 

Classes in net.sf.ehcache.store that implement Policy
 class AbstractPolicy
          A base policy class
 class FifoPolicy
          Contains common LFU policy code for use between the LfuMemoryStore and the DiskStore, which also uses an LfuPolicy for evictions.
 class LfuPolicy
          Contains common LFU policy code for use between the LfuMemoryStore and the DiskStore, which also uses an LfuPolicy for evictions.
 class LruPolicy
          Contains common LFU policy code for use between the LfuMemoryStore and the DiskStore, which also uses an LfuPolicy for evictions.
 

Fields in net.sf.ehcache.store declared as Policy
protected  Policy MemoryStore.policy
          The eviction policy to use
 

Methods in net.sf.ehcache.store that return Policy
protected  Policy MemoryStore.determineEvictionPolicy()
          Chooses the Policy from the cache configuration
 Policy LruMemoryStore.getEvictionPolicy()
           
 Policy XATransactionalStore.getEvictionPolicy()
          Non transactional
 Policy Store.getEvictionPolicy()
           
 Policy MemoryStore.getEvictionPolicy()
           
 Policy DiskStore.getEvictionPolicy()
           
 

Methods in net.sf.ehcache.store with parameters of type Policy
 void LruMemoryStore.setEvictionPolicy(Policy policy)
          Sets the eviction policy strategy.
 void XATransactionalStore.setEvictionPolicy(Policy policy)
          Non transactional Sets the eviction policy strategy.
 void Store.setEvictionPolicy(Policy policy)
          Sets the eviction policy strategy.
 void MemoryStore.setEvictionPolicy(Policy policy)
          Sets the policy.
 void DiskStore.setEvictionPolicy(Policy policy)
          Sets the eviction policy strategy.
 

Uses of Policy in net.sf.ehcache.transaction.xa
 

Methods in net.sf.ehcache.transaction.xa that return Policy
 Policy SyncAwareStore.getEvictionPolicy()
          
 

Methods in net.sf.ehcache.transaction.xa with parameters of type Policy
 void SyncAwareStore.setEvictionPolicy(Policy policy)
          Sets the eviction policy strategy.
 


ehcache

true