| com.rift.coad.lib.cache.Cache
All known Subclasses: com.rift.coad.lib.bean.BeanCacheManager, com.rift.coad.lib.deployment.rmi.TransactionRMICache, com.rift.coad.lib.bean.TransactionBeanCacheManager, com.rift.coad.lib.deployment.rmi.RMICache, com.rift.coad.lib.cache.KeySyncCache, com.rift.coad.lib.bean.ProxyCache, com.rift.coad.lib.cache.KeySyncCacheManager, com.rift.coad.lib.bean.TransactionProxyCache, com.rift.coad.lib.bean.TransactionBeanCache, com.rift.coad.lib.bean.BeanCache,
Cache | public interface Cache (Code) | | The cache interface supplies a standard set of cache maintainance methods. It
does not enable a user to access the cache entries directly.
author: Brett Chaldecott |
Method Summary | |
public void | clear() This method is called to forcibly remove everything from the cache. | public boolean | contains(Object cacheEntry) This mehtod returns true if the cache contains the checked entry. | public void | garbageCollect() This method is called to perform garbage collection on the cache entries. |
clear | public void clear()(Code) | | This method is called to forcibly remove everything from the cache.
|
contains | public boolean contains(Object cacheEntry)(Code) | | This mehtod returns true if the cache contains the checked entry.
TRUE if the cache contains the checked entry. Parameters: cacheEntry - The entry to perform the check for. |
garbageCollect | public void garbageCollect()(Code) | | This method is called to perform garbage collection on the cache entries.
|
|
|