| org.apache.derby.iapi.services.cache.SizedCacheable
SizedCacheable | public interface SizedCacheable extends Cacheable(Code) | | This interface extends the Cacheable interface (@see Cacheable) with a method that
estimates the size of the Cacheable object, in bytes. CacheManagers constructed with the SizedCacheFactory
interface regulate the total estimated cache size, in bytes.
CacheManagers constructed with the CacheFactory use regulate the total number of cache entries.
See Also: Cacheable See Also: CacheFactory author: Jack Klebanoff |
Method Summary | |
public int | getSize() Get the estimated size of the cacheable object. |
getSize | public int getSize()(Code) | | Get the estimated size of the cacheable object.
the estimated size, in bytes |
|
|