Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
org.apache.derby.iapi.services.cache.Cacheable

Uses of Cacheable in org.apache.derby.iapi.services.cache
 

Subinterfaces of Cacheable in org.apache.derby.iapi.services.cache
 interface SizedCacheable
          This interface extends the Cacheable interface (@see Cacheable) with a method that estimates the size of the Cacheable object, in bytes.
 

Methods in org.apache.derby.iapi.services.cache that return Cacheable
 Cacheable CacheableFactory.newCacheable(CacheManager cm)
           
 Cacheable Cacheable.setIdentity(java.lang.Object key)
          Set the identity of the object.
 Cacheable Cacheable.createIdentity(java.lang.Object key, java.lang.Object createParameter)
          Create a new item.
 Cacheable CacheManager.find(java.lang.Object key)
          Find an object in the cache.
 Cacheable CacheManager.findCached(java.lang.Object key)
          Find an object in the cache.
 Cacheable CacheManager.create(java.lang.Object key, java.lang.Object createParameter)
          Create an object in the cache.
 

Methods in org.apache.derby.iapi.services.cache with parameters of type Cacheable
 void CacheManager.release(Cacheable entry)
          Release a Cacheable object previously found with find() or findCached().
 void CacheManager.remove(Cacheable entry)
          Delete and remove an object from the cache.