Uses of Interface
com.easyjf.cache.ICache

Packages that use ICache
com.easyjf.cache   
com.easyjf.cache.store   
com.easyjf.dbo   
 

Uses of ICache in com.easyjf.cache
 

Classes in com.easyjf.cache that implement ICache
 class EasyCache
           
 

Methods in com.easyjf.cache that return ICache
 ICache Config.getDefaultCache()
           
 ICache Config.getCache(java.lang.String name)
           
 ICache CacheManager.getCache(java.lang.String name)
           
 ICache CacheManager.getDefaultCache()
           
 

Methods in com.easyjf.cache with parameters of type ICache
 void CacheManager.addCache(ICache cache)
           
 void CacheManager.setDefaultCache(ICache defaultCache)
           
 

Uses of ICache in com.easyjf.cache.store
 

Methods in com.easyjf.cache.store with parameters of type ICache
static MemoryStore MemoryStore.create(ICache cache)
           
 

Constructors in com.easyjf.cache.store with parameters of type ICache
LruMemoryStore(ICache cache)
          Constructor for the LruMemoryStore object The backing LinkedHashMap is created with LRU by access order.
FifoMemoryStore(ICache cache)
          Constructor for the FifoMemoryStore object.
 

Uses of ICache in com.easyjf.dbo
 

Methods in com.easyjf.dbo that return ICache
static ICache DboCache.getCache()