Uses of Interface
org.cache2k.processor.EntryMutator
-
Packages that use EntryMutator Package Description org.cache2k Main package for cache2k API containing functions to build and access a cache. -
-
Uses of EntryMutator in org.cache2k
Methods in org.cache2k with parameters of type EntryMutator Modifier and Type Method Description void
AbstractCache. mutate(K key, EntryMutator<K,V> mutator)
default void
Cache. mutate(K key, EntryMutator<K,V> mutator)
Invoke a user defined operation on a cache entry.void
ForwardingCache. mutate(K key, EntryMutator<K,V> mutator)
void
AbstractCache. mutateAll(Iterable<? extends K> keys, EntryMutator<K,V> mutator)
default void
Cache. mutateAll(Iterable<? extends K> keys, EntryMutator<K,V> mutator)
Invoke a user defined mutation operation on multiple cache entries specified by thekeys
parameter.void
ForwardingCache. mutateAll(Iterable<? extends K> keys, EntryMutator<K,V> mutator)
-