Package com.tangosol.net.events
Class EventHelper
- java.lang.Object
-
- com.tangosol.net.events.EventHelper
-
public abstract class EventHelper extends Object
Helper class providing various functionality related to event handling.- Since:
- Coherence 12.1.2
- Author:
- hr 2012.09.04
-
-
Constructor Summary
Constructors Constructor Description EventHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Map<EntryEvent.Type,Set<BinaryEntry>>
getEntryEventsMap(TransactionEvent event)
Converts the providedTransactionEvent
into a map keyed byEntryEvent
and with a value of a Set ofentries
.static Map<EntryEvent.Type,Set<BinaryEntry>>
getEntryEventsMap(UnsolicitedCommitEvent event)
Converts the providedUnsolicitedCommitEvent
into a map keyed byEntryEvent
and with a value of a Set ofentries
.protected static Map<EntryEvent.Type,Set<BinaryEntry>>
getEntryEventsMap(Set<BinaryEntry> setEntries, boolean fPreEvent)
Converts the provided set ofentries
into a map keyed byEntryEvent
and with a value of a Set of entries.
-
-
-
Method Detail
-
getEntryEventsMap
public static Map<EntryEvent.Type,Set<BinaryEntry>> getEntryEventsMap(TransactionEvent event)
Converts the providedTransactionEvent
into a map keyed byEntryEvent
and with a value of a Set ofentries
.
-
getEntryEventsMap
public static Map<EntryEvent.Type,Set<BinaryEntry>> getEntryEventsMap(UnsolicitedCommitEvent event)
Converts the providedUnsolicitedCommitEvent
into a map keyed byEntryEvent
and with a value of a Set ofentries
.
-
getEntryEventsMap
protected static Map<EntryEvent.Type,Set<BinaryEntry>> getEntryEventsMap(Set<BinaryEntry> setEntries, boolean fPreEvent)
Converts the provided set ofentries
into a map keyed byEntryEvent
and with a value of a Set of entries.
-
-