void |
FIFOObjectCache.addObject(ObjectKey<T> objectKey,
T object) |
|
void |
ObjectCache.addObject(ObjectKey<T> objectKey,
T object) |
Adds an object under the given key to the cache.
|
void |
SimpleObjectCache.addObject(ObjectKey<T> objectKey,
T object) |
|
T |
AbstractObjectCacheManager.fetch(ObjectKey<T> objectKey) |
|
T |
ObjectCacheManager.fetch(ObjectKey<T> objectKey) |
Looks for the object under the given ObjectKey.
|
protected java.lang.String |
AbstractObjectCacheManager.getDebugKey(ObjectKey<T> objectKey) |
|
T |
FIFOObjectCache.getObject(ObjectKey<T> objectKey) |
|
T |
ObjectCache.getObject(ObjectKey<T> objectKey) |
Get the object which is found under the given key.
|
T |
SimpleObjectCache.getObject(ObjectKey<T> objectKey) |
|
protected T |
AbstractObjectCacheManager.handleCreation(ObjectKey<T> objectKey) |
Default implementation of how objects should be created.
|
protected void |
AbstractObjectCacheManager.handleExpiration(ObjectKey<T> objectKey) |
Default implementation simply removes the expired object.
|
protected void |
AbstractObjectCacheManager.handleInvalidation(ObjectKey<T> objectKey) |
Default implementation simply removed the invalidated object.
|
protected T |
AbstractObjectCacheManager.handleRequest(ObjectKey<T> objectKey) |
Default implementation simply requests the cache with the given key.
|
void |
AbstractObjectCacheManager.invalidate(ObjectKey<T> objectKey) |
|
void |
ObjectCacheManager.invalidate(ObjectKey<T> objectKey) |
Invalidates the object under the given (@link ObjectKey}
|
T |
FIFOObjectCache.removeObject(ObjectKey<T> objectKey) |
|
T |
ObjectCache.removeObject(ObjectKey<T> objectKey) |
Removes an object from the cache.
|
T |
SimpleObjectCache.removeObject(ObjectKey<T> objectKey) |
|