public interface CacheStore
Modifier and Type | Method and Description |
---|---|
void |
clear(java.lang.String key)
Removes the value from the cache associated with the key
|
void |
clearAll()
Clears all the entries in the cache
|
boolean |
entryExists(java.lang.Object key)
Returns if a value is associated with the key
|
CacheObject |
get(java.lang.Object key)
Get an object from the cache.
|
CacheObject |
put(java.lang.Object key,
CacheObject value)
Put an object in the cache with a key that can be used to retrieve the object later.
|
CacheObject put(java.lang.Object key, CacheObject value)
key
- Key against which the value is stored in cachevalue
- value to store in the cacheCacheObject get(java.lang.Object key)
key
- void clearAll()
void clear(java.lang.String key)
key
- key associated with the object that has to be removedboolean entryExists(java.lang.Object key)
key
- Copyright © 2010 - 2020 Adobe. All Rights Reserved