Class AbstractCacheAccess<K,V>

java.lang.Object
org.apache.commons.jcs3.access.AbstractCacheAccess<K,V>
All Implemented Interfaces:
ICacheAccessManagement
Direct Known Subclasses:
CacheAccess, GroupCacheAccess

public abstract class AbstractCacheAccess<K,V> extends Object implements ICacheAccessManagement
This class provides the common methods for all types of access to the cache.

An instance of this class is tied to a specific cache region. Static methods are provided to get such instances.

Using this class you can retrieve an item, the item's wrapper, and the element's configuration. You can also put an item in the cache, remove an item, and clear a region.

The JCS class is the preferred way to access these methods.