Uses of Interface
org.cache2k.processor.EntryProcessor
-
Packages that use EntryProcessor Package Description org.cache2k Main package for cache2k API containing functions to build and access a cache. -
-
Uses of EntryProcessor in org.cache2k
Methods in org.cache2k with parameters of type EntryProcessor Modifier and Type Method Description <@Nullable R>
RAbstractCache. invoke(K key, EntryProcessor<K,V,@Nullable R> processor)
<@Nullable R>
RCache. invoke(K key, EntryProcessor<K,V,@Nullable R> processor)
Invoke a user defined function on a cache entry.<@Nullable R>
RForwardingCache. invoke(K key, EntryProcessor<K,V,@Nullable R> processor)
<@Nullable R>
Map<K,EntryProcessingResult<R>>AbstractCache. invokeAll(Iterable<? extends K> keys, EntryProcessor<K,V,@Nullable R> entryProcessor)
<@Nullable R>
Map<K,EntryProcessingResult<R>>Cache. invokeAll(Iterable<? extends K> keys, EntryProcessor<K,V,@Nullable R> entryProcessor)
Invoke a user defined function on multiple cache entries specified by thekeys
parameter.<@Nullable R>
Map<K,EntryProcessingResult<R>>ForwardingCache. invokeAll(Iterable<? extends K> keys, EntryProcessor<K,V,@Nullable R> entryProcessor)
-