Uses of Class
org.apache.fulcrum.cache.CachedObject
Packages that use CachedObject
-
Uses of CachedObject in org.apache.fulcrum.cache
Subclasses of CachedObject in org.apache.fulcrum.cacheModifier and TypeClassDescriptionclass
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 CachedObjectModifier and TypeMethodDescription<T> CachedObject
<T> Gets a cached object given its id (a String).Methods in org.apache.fulcrum.cache that return types with arguments of type CachedObjectModifier and TypeMethodDescriptionList
<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 CachedObjectModifier and TypeMethodDescription<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 CachedObjectModifier and TypeFieldDescriptionprotected ConcurrentHashMap
<String, CachedObject<?>> DefaultGlobalCacheService.cache
The cache.Methods in org.apache.fulcrum.cache.impl that return CachedObjectModifier and TypeMethodDescription<T> CachedObject
<T> Returns an item from the cache. /** Returns an item from the cache.<T> CachedObject
<T> <T> CachedObject
<T> Methods in org.apache.fulcrum.cache.impl that return types with arguments of type CachedObjectModifier and TypeMethodDescriptionList
<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 CachedObjectModifier and TypeMethodDescription<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)