| |
|
| java.lang.Object com.rift.coad.lib.bean.BeanCacheManager
BeanCacheManager | public class BeanCacheManager implements Cache(Code) | | This object is responsible for managing the bean cache entries.
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. | public BeanCache | getBeanCache(Object ref) This method returns the reference to the bean cache. |
BeanCacheManager | public BeanCacheManager()(Code) | | Creates a new instance of BeanCacheManager
|
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.
|
getBeanCache | public BeanCache getBeanCache(Object ref) throws BeanException(Code) | | This method returns the reference to the bean cache.
The reference to the bean cache. Parameters: ref - The reference to the bean cache. exception: BeanException - |
|
|
|