Uses of Class
org.apache.fulcrum.cache.CachedObject
-
Packages that use CachedObject Package Description org.apache.fulcrum.cache org.apache.fulcrum.cache.impl -
-
Uses of CachedObject in org.apache.fulcrum.cache
Subclasses of CachedObject in org.apache.fulcrum.cache Modifier and Type Class Description class
RefreshableCachedObject<T extends Refreshable>
The idea of the RefreshableCachedObject is that, rather than removing items from the cache when they become stale, we'll tell them to refresh themselves instead.Methods in org.apache.fulcrum.cache that return CachedObject Modifier and Type Method Description <T> CachedObject<T>
GlobalCacheService. getObject(String objectId)
Gets a cached object given its id (a String).Methods in org.apache.fulcrum.cache that return types with arguments of type CachedObject Modifier and Type Method Description List<CachedObject<?>>
GlobalCacheService. getCachedObjects()
Returns a copy of the non-expired CachedObjects in the cache as a list.Methods in org.apache.fulcrum.cache with parameters of type CachedObject Modifier and Type Method Description <T> void
GlobalCacheService. addObject(String objectId, CachedObject<T> object)
Adds an object to the cache. -
Uses of CachedObject in org.apache.fulcrum.cache.impl
Fields in org.apache.fulcrum.cache.impl with type parameters of type CachedObject Modifier and Type Field Description protected ConcurrentHashMap<String,CachedObject<?>>
DefaultGlobalCacheService. cache
The cache.Methods in org.apache.fulcrum.cache.impl that return CachedObject Modifier and Type Method Description <T> CachedObject<T>
DefaultGlobalCacheService. getObject(String objectId)
Returns an item from the cache. /** Returns an item from the cache.<T> CachedObject<T>
EHCacheService. getObject(String objectId)
<T> CachedObject<T>
JCSCacheService. getObject(String objectId)
Methods in org.apache.fulcrum.cache.impl that return types with arguments of type CachedObject Modifier and Type Method Description List<CachedObject<?>>
DefaultGlobalCacheService. getCachedObjects()
Returns a copy of the non-expired CachedObjects in the cache as a list.List<CachedObject<?>>
EHCacheService. getCachedObjects()
List<CachedObject<?>>
JCSCacheService. getCachedObjects()
Methods in org.apache.fulcrum.cache.impl with parameters of type CachedObject Modifier and Type Method Description <T> void
DefaultGlobalCacheService. addObject(String objectId, CachedObject<T> object)
Adds an object to the cache.<T> void
EHCacheService. addObject(String objectId, CachedObject<T> object)
<T> void
JCSCacheService. addObject(String objectId, CachedObject<T> cachedObject)
-