Package javax.cache.processor
This package contains the API for Entry Processors.
Implementations may optionally enforce security restrictions. In case of a
violation, a SecurityException
must be thrown.
- Since:
- 1.0
-
Interface Summary Interface Description EntryProcessor<K,V,T> An invocable function that allows applications to perform compound operations on aCache.Entry
atomically, according to the defined consistency of aCache
.EntryProcessorResult<T> A mechanism to represent and obtain the result of processing aCache
entry using anEntryProcessor
.MutableEntry<K,V> A mutable representation of aCache.Entry
. -
Exception Summary Exception Description EntryProcessorException An exception to indicate a problem occurred attempting to execute anEntryProcessor
against an entry.