Uses of Class
com.easyjf.cache.CacheException

Packages that use CacheException
com.easyjf.cache   
com.easyjf.cache.store   
 

Uses of CacheException in com.easyjf.cache
 

Methods in com.easyjf.cache that throw CacheException
 java.lang.Object ICache.get(java.lang.Object key)
           
 void ICache.put(java.lang.Object key, java.lang.Object value)
           
 void ICache.remove(java.lang.Object key)
           
 void ICache.clear()
           
 void ICache.destroy()
           
 void ICache.lock(java.lang.Object key)
           
 void ICache.unlock(java.lang.Object key)
           
 java.lang.Object EasyCache.get(java.lang.Object key)
           
 void EasyCache.put(java.lang.Object key, java.lang.Object value)
           
 void EasyCache.remove(java.lang.Object key)
           
 void EasyCache.clear()
           
 void EasyCache.destroy()
           
 void EasyCache.lock(java.lang.Object key)
           
 void EasyCache.unlock(java.lang.Object key)
           
static CacheManager CacheManager.create()
           
static CacheManager CacheManager.create(java.lang.String configurationFileName)
           
 void CacheManager.addCache(java.lang.String cacheName)
           
 void CacheManager.addCache(ICache cache)
           
 void CacheManager.removeCache(java.lang.String cacheName)
           
 void CacheManager.shutdown()
           
 

Constructors in com.easyjf.cache that throw CacheException
CacheManager(Config configuration)
           
CacheManager(java.lang.String configurationFileName)
           
CacheManager()
           
 

Uses of CacheException in com.easyjf.cache.store
 

Methods in com.easyjf.cache.store that throw CacheException
 long MemoryStore.getSizeInBytes()
           
 java.util.Map LruMemoryStore.loadMapInstance()
          Tries to load a LinkedHashMap (JDK1.4) and then tries to load an LRUMap.