Uses of Class
rabbit.cache.CacheException

Packages that use CacheException
rabbit.cache A persistant storage suitable for http resources. 
rabbit.cache.ncache   
 

Uses of CacheException in rabbit.cache
 

Methods in rabbit.cache that throw CacheException
 void Cache.addEntry(CacheEntry<K,V> ent)
          Insert a CacheEntry into the cache.
 void Cache.clear()
          Clear the Cache from files.
 void Cache.entryChanged(CacheEntry<K,V> ent, K newKey, V newValue)
          Signal that a cache entry have changed.
 CacheEntry<K,V> Cache.getEntry(K k)
          Get the CacheEntry assosiated with given object.
 CacheEntry<K,V> Cache.newEntry(K k)
          Reserve space for a CacheEntry with key o.
 void Cache.remove(K k)
          Remove the Entry with key o from the cache.
 

Uses of CacheException in rabbit.cache.ncache
 

Methods in rabbit.cache.ncache that throw CacheException
 void NCache.addEntry(CacheEntry<K,V> ent)
          Insert a CacheEntry into the cache.
 void NCache.clear()
          Clear the Cache from files.
 void NCache.entryChanged(CacheEntry<K,V> ent, K newKey, V newHook)
          Signal that a cache entry have changed.
 CacheEntry<K,V> NCache.getEntry(K k)
          Get the CacheEntry assosiated with given object.
 void NCache.remove(K k)
          Remove the Entry with key k from the cache.