Uses of Interface
com.caucho.distcache.ExtCacheEntry

Packages that use ExtCacheEntry
com.caucho.distcache   
com.caucho.server.distcache   
 

Uses of ExtCacheEntry in com.caucho.distcache
 

Methods in com.caucho.distcache that return ExtCacheEntry
 ExtCacheEntry AbstractCache.getExtCacheEntry(HashKey key)
           
 ExtCacheEntry<K,V> ObjectCache.getExtCacheEntry(K key)
          Returns the extended entry
 ExtCacheEntry AbstractCache.getExtCacheEntry(java.lang.Object key)
          Returns the cache entry for the object with the given key.
 ExtCacheEntry<?,?> ByteStreamCache.getExtCacheEntry(java.lang.Object key)
          Returns the cache entry for the object with the given key.
 ExtCacheEntry AbstractCache.getLiveCacheEntry(java.lang.Object key)
           
 ExtCacheEntry<K,V> ObjectCache.getStatCacheEntry(K key)
           
 ExtCacheEntry AbstractCache.getStatCacheEntry(java.lang.Object key)
           
 ExtCacheEntry AbstractCache.peekExtCacheEntry(java.lang.Object key)
          Returns the cache entry for the object with the given key.
 ExtCacheEntry<?,?> ByteStreamCache.peekExtCacheEntry(java.lang.Object key)
          Returns the cache entry for the object with the given key, without triggering a load.
 ExtCacheEntry AbstractCache.put(java.lang.Object key, java.io.InputStream is, long accessedExpireTimeout, long modifiedExpireTimeout)
          Puts a new item in the cache with a custom idle timeout (used for sessions).
 ExtCacheEntry<?,?> ByteStreamCache.put(java.lang.Object key, java.io.InputStream is, long accessedExpireTimeout, long modifiedExpireTimeout)
          Puts a new item in the cache.
 ExtCacheEntry AbstractCache.put(java.lang.Object key, java.io.InputStream is, long accessedExpireTimeout, long modifiedExpireTimeout, int userFlags)
          Puts a new item in the cache with a custom idle timeout (used for sessions).
 ExtCacheEntry<?,?> ByteStreamCache.put(java.lang.Object key, java.io.InputStream is, long accessedExpireTimeout, long modifiedExpireTimeout, int flags)
          Puts a new item in the cache.
 ExtCacheEntry AbstractCache.put(java.lang.Object key, java.io.InputStream is, long accessedExpireTimeout, long modifiedExpireTimeout, long lastAccessTime, long lastModifiedTime)
          Puts a new item in the cache with a custom idle timeout (used for sessions).
 ExtCacheEntry<?,?> ByteStreamCache.put(java.lang.Object key, java.io.InputStream is, long accessedExpireTimeout, long modifiedExpireTimeout, long accessTime, long modifiedTime)
          Puts a new item in the cache.
 

Uses of ExtCacheEntry in com.caucho.server.distcache
 

Classes in com.caucho.server.distcache that implement ExtCacheEntry
 class ExtCacheEntryFacade
          An entry in the cache map
 

Methods in com.caucho.server.distcache that return ExtCacheEntry
 ExtCacheEntry CacheImpl.getExtCacheEntry(HashKey key)
           
 ExtCacheEntry CacheImpl.getExtCacheEntry(java.lang.Object key)
          Returns the cache entry for the object with the given key.
 ExtCacheEntry CacheImpl.getLiveCacheEntry(java.lang.Object key)
          Returns the entry for the given key, returning the live item.
 ExtCacheEntry CacheImpl.getStatCacheEntry(java.lang.Object key)
           
 ExtCacheEntry CacheImpl.peekExtCacheEntry(java.lang.Object key)
          Returns the cache entry for the object with the given key.
 ExtCacheEntry CacheImpl.put(java.lang.Object key, java.io.InputStream is, long accessedExpireTimeout, long modifiedExpireTimeout)
          Puts a new item in the cache with a custom idle timeout (used for sessions).
 ExtCacheEntry CacheImpl.put(java.lang.Object key, java.io.InputStream is, long accessedExpireTimeout, long modifiedExpireTimeout, int flags)
          Puts a new item in the cache with a custom idle timeout (used for sessions).
 ExtCacheEntry CacheImpl.put(java.lang.Object key, java.io.InputStream is, long accessedExpireTimeout, long modifiedExpireTimeout, long lastAccessTime, long lastModifiedTime)
          Puts a new item in the cache with a custom idle timeout (used for sessions).