org.castor.cache.distributed
public abstract class AbstractDistributedCache extends AbstractBaseCache
Since: 1.0
Version: $Revision: 5951 $ $Date: 2006-05-05 13:53:54 -0600 (Fri, 05 May 2006) $
| Method Summary | |
|---|---|
| void | clear() |
| boolean | containsKey(Object key) |
| boolean | containsValue(Object value) |
| Set | entrySet() |
| Object | get(Object key) |
| protected Map | getCache()
Get the cache instance.
|
| boolean | isEmpty() |
| Set | keySet() |
| Object | put(Object key, Object value) |
| void | putAll(Map map) |
| Object | remove(Object key) |
| protected void | setCache(Map cache)
Set the cache instance.
|
| int | size() |
| Collection | values() |
See Also: java.util.Map#clear()
See Also: java.util.Map#containsKey(java.lang.Object)
See Also: java.util.Map#containsValue(java.lang.Object)
See Also: java.util.Map#entrySet()
See Also: java.util.Map#get(java.lang.Object)
Returns: The cache instance.
See Also: java.util.Map#isEmpty()
See Also: java.util.Map#keySet()
See Also: java.util.Map#put(java.lang.Object, java.lang.Object)
See Also: java.util.Map#putAll(java.util.Map)
See Also: java.util.Map#remove(java.lang.Object)
Parameters: cache The cache instance.
See Also: java.util.Map#size()
See Also: java.util.Map#values()