Uses of Interface
rabbit.cache.CacheEntry

Packages that use CacheEntry
rabbit.cache A persistant storage suitable for http resources. 
rabbit.handler The resource handlers used in the web proxy. 
rabbit.proxy The web proxy components. 
 

Uses of CacheEntry in rabbit.cache
 

Methods in rabbit.cache that return CacheEntry
 CacheEntry<K,V> Cache.getEntry(K k)
          Get the CacheEntry assosiated with given object.
 CacheEntry<K,V> NCache.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.
 CacheEntry<K,V> NCache.newEntry(K k)
          Reserve space for a CacheEntry with key o.
 

Methods in rabbit.cache that return types with arguments of type CacheEntry
 Collection<? extends CacheEntry<K,V>> Cache.getEntries()
          Get the CacheEntries in the cache.
 

Methods in rabbit.cache with parameters of type CacheEntry
 void Cache.addEntry(CacheEntry<K,V> ent)
          Insert a CacheEntry into the cache.
 void NCache.addEntry(CacheEntry<K,V> ent)
          Insert a CacheEntry into the cache.
 void Cache.entryChanged(CacheEntry<K,V> ent, K newKey, V newValue)
          Signal that a cache entry have changed.
 void NCache.entryChanged(CacheEntry<K,V> ent, K newKey, V newHook)
          Signal that a cache entry have changed.
 

Uses of CacheEntry in rabbit.handler
 

Fields in rabbit.handler declared as CacheEntry
protected  CacheEntry<HttpHeader,HttpHeader> BaseHandler.entry
          The cache entry if available.
 

Uses of CacheEntry in rabbit.proxy
 

Constructors in rabbit.proxy with parameters of type CacheEntry
CacheResourceSource(Cache<HttpHeader,HttpHeader> cache, CacheEntry<HttpHeader,HttpHeader> entry, NioHandler tr, BufferHandler bufHandler)