Interface EntryProcessorEvent
- All Superinterfaces:
Event<EntryProcessorEvent.Type>
,Event<EntryProcessorEvent.Type>
,Iterable<BinaryEntry>
An EntryProcessorEvent captures information relating to the execution of
InvocableMap.EntryProcessor
s.- Since:
- Coherence 12.1.2
- Author:
- bo, nsa, rhan, mwj 2011.03.29
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn a Set ofentries
being processed by the entry processor.Return theInvocableMap.EntryProcessor
associated with thisEntryProcessorEvent
.default Iterator
<BinaryEntry> iterator()
Returns an iterator over theentries
in this event.Methods inherited from interface com.tangosol.net.events.Event
getType, nextInterceptor
Methods inherited from interface com.tangosol.net.events.partition.cache.Event
getBackingMapContext, getCacheName, getDispatcher, getManagerContext, getService
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
getEntrySet
Set<BinaryEntry> getEntrySet()Return a Set ofentries
being processed by the entry processor.- Returns:
- the Set of entries represented by this event
-
getProcessor
InvocableMap.EntryProcessor getProcessor()Return theInvocableMap.EntryProcessor
associated with thisEntryProcessorEvent
.- Returns:
- the entry processor associated with this event
-
iterator
Returns an iterator over theentries
in this event.- Specified by:
iterator
in interfaceIterable<BinaryEntry>
- Returns:
- an iterator over the
entries
in this event.
-