Uses of Interface
org.cache2k.processor.MutableCacheEntry
-
Packages that use MutableCacheEntry Package Description org.cache2k.processor Entry processor and supporting types for custom atomic operations on a cache entry. -
-
Uses of MutableCacheEntry in org.cache2k.processor
Methods in org.cache2k.processor that return MutableCacheEntry Modifier and Type Method Description MutableCacheEntry<K,V>
MutableCacheEntry. load()
Calls the loader unconditionally in this operation.MutableCacheEntry<K,V>
MutableCacheEntry. lock()
Locks the entry for mutation.MutableCacheEntry<K,V>
MutableCacheEntry. remove()
Removes an entry from the cache.MutableCacheEntry<K,V>
MutableCacheEntry. setException(Throwable ex)
Insert or update the entry and sets an exception.MutableCacheEntry<K,V>
MutableCacheEntry. setExpiryTime(long t)
Set a new expiry time for the entry.MutableCacheEntry<K,V>
MutableCacheEntry. setModificationTime(long t)
IfsetValue(Object)
is used, this sets an alternative time for expiry calculations.MutableCacheEntry<K,V>
MutableCacheEntry. setValue(V v)
Insert or updates the cache value assigned to this key.Methods in org.cache2k.processor with parameters of type MutableCacheEntry Modifier and Type Method Description void
EntryMutator. mutate(MutableCacheEntry<K,V> entry)
R
EntryProcessor. process(MutableCacheEntry<K,V> entry)
Examines or mutates an entry.
-