| |
|
| java.lang.Object com.rift.coad.lib.cache.KeySyncCacheManager
KeySyncCacheManager | public class KeySyncCacheManager implements Cache(Code) | | This class is responsible for managing the the key sync caches.
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 KeySyncCache | getKeySyncCache(Object identifier) This method returns the key synch cache for the given key. |
KeySyncCacheManager | public KeySyncCacheManager()(Code) | | Creates a new instance of KeySyncCacheManager
|
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.
|
getKeySyncCache | public KeySyncCache getKeySyncCache(Object identifier) throws CacheException(Code) | | This method returns the key synch cache for the given key.
KeySyncCache The cache object for the given identifier. Parameters: identifier - The identifier to look up. exception: CacheException - |
|
|
|