K - the key typeV - the value type@PublicApi
public interface Cache<K,V>
null keys and values are NOT supported. Although using null values may work for some
implementations, it won't work for all implementations and the behaviour may change over time.| Modifier and Type | Method and Description |
|---|---|
void |
addListener(CacheEntryListener<K,V> listener,
boolean includeValues)
Adds a
CacheEntryListener |
boolean |
containsKey(K key)
Returns whether an entry exists in the cache under the specified key.
|
V |
get(K key)
Retrieve an object from this cache.
|
V |
get(K key,
Supplier<? extends V> valueSupplier)
Retrieve an object from this cache.
|
Collection<K> |
getKeys()
Gets the keys of all objects currently stored in the cache.
|
String |
getName()
The name of the cache, uniquely identifies this cache.
|
void |
put(K key,
V value)
Put an object into the cache.
|
V |
putIfAbsent(K key,
V value)
Atomically associates the specified key with the given value if it is not already associated with a value.
|
void |
remove(K key)
Remove the object identified by the key from the cache.
|
boolean |
remove(K key,
V value)
Atomically removes the entry for a key only if currently mapped to a given value.
|
void |
removeAll()
Remove all of the objects from this cache.
|
void |
removeListener(CacheEntryListener<K,V> listener)
Removes a
CacheEntryListener |
boolean |
replace(K key,
V oldValue,
V newValue)
Atomically replaces the entry for a key only if currently mapped to a given value.
|
@Nonnull String getName()
boolean containsKey(@Nonnull K key)
Note that:
CacheLoader,
it will not be called. Obviously, any call to get(Object)
will call the corresponding CacheLoader (if required).CacheSettings.getReplicateViaCopy()
set to false and CacheSettings.getLocal() set to false,
then only the local copy of the cache is checked. A local cache on
another node may contain an entry under the specified key.key - the key for the entry to check for containment@Nonnull Collection<K> getKeys()
Objects keys@Nullable V get(@Nonnull K key)
key - the key uniquely identifying the object to be retrievednull if the object is not found@Nonnull V get(@Nonnull K key, @Nonnull Supplier<? extends V> valueSupplier)
valueSupplier will be used to populate the entry and be counted
as a cache miss.key - the key uniquely identifying the object to be retrievedvalueSupplier - the supplier to call if no value is stored in the cache. the value supplied by the supplier
cannot be nullvoid put(@Nonnull K key, @Nonnull V value)
NOTE: Users of caches that wish to be well behaved in a clustered environment should use the
CacheLoader semantics and supply a CacheLoader when getting the Cache.
key - the key uniquely identifying the object to be added into the cachevalue - the non-null value to be cached@Nullable V putIfAbsent(@Nonnull K key, @Nonnull V value)
key - the key with which the specified value is associatedvalue - the non-null value to be cachednull if there was no mapping for the keyvoid remove(@Nonnull K key)
key - the key that uniquely identifies the object to be removedboolean remove(@Nonnull K key, @Nonnull V value)
key - the key with which the specified value is associatedvalue - the value expected to be associated with the specified keytrue if the value was removed, false otherwisevoid removeAll()
boolean replace(@Nonnull K key, @Nonnull V oldValue, @Nonnull V newValue)
key - the key with which the specified value is associatedoldValue - the value expected to be associated with the specified keynewValue - the value to be associated with the specified keytrue if the value was replaced, false otherwisevoid addListener(@Nonnull CacheEntryListener<K,V> listener, boolean includeValues)
CacheEntryListenerlistener - the listenerincludeValues - if the events sent to this listener will include old/new value. This is can be used
in cases when the cost of finding these values is big (network sync) but the listener is not interested in
the concrete values for events its getting. The support for this parameter is optional and implementation dependantvoid removeListener(@Nonnull CacheEntryListener<K,V> listener)
CacheEntryListenerlistener - the listenerCopyright © 2015 Atlassian. All rights reserved.