Uses of Interface
javax.cache.processor.EntryProcessor
-
Packages that use EntryProcessor Package Description javax.cache This package contains the API for JCache. -
-
Uses of EntryProcessor in javax.cache
Methods in javax.cache with parameters of type EntryProcessor Modifier and Type Method Description <T> T
Cache. invoke(K key, EntryProcessor<K,V,T> entryProcessor, Object... arguments)
Invokes anEntryProcessor
against theCache.Entry
specified by the provided key.<T> Map<K,EntryProcessorResult<T>>
Cache. invokeAll(Set<? extends K> keys, EntryProcessor<K,V,T> entryProcessor, Object... arguments)
Invokes anEntryProcessor
against the set ofCache.Entry
s specified by the set of keys.
-