Interface EntryProcessorEvent
-
- All Superinterfaces:
Event<EntryProcessorEvent.Type>
,Event<EntryProcessorEvent.Type>
,Iterable<BinaryEntry>
public interface EntryProcessorEvent extends Event<EntryProcessorEvent.Type>, Iterable<BinaryEntry>
An EntryProcessorEvent captures information relating to the execution ofInvocableMap.EntryProcessor
s.- Since:
- Coherence 12.1.2
- Author:
- bo, nsa, rhan, mwj 2011.03.29
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
EntryProcessorEvent.Type
TheEntryProcessorEvent
types.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Set<BinaryEntry>
getEntrySet()
Return a Set ofentries
being processed by the entry processor.InvocableMap.EntryProcessor
getProcessor()
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 Detail
-
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
default Iterator<BinaryEntry> iterator()
Returns an iterator over theentries
in this event.- Specified by:
iterator
in interfaceIterable<BinaryEntry>
- Returns:
- an iterator over the
entries
in this event.
-
-