Package com.hazelcast.map
Class EventLostEvent
- java.lang.Object
-
- com.hazelcast.map.EventLostEvent
-
- All Implemented Interfaces:
IMapEvent
public class EventLostEvent extends java.lang.Object implements IMapEvent
This event is fired in case of an event lost detection. The fired event can be caught by implementingEventLostListener
.- See Also:
EventLostListener
-
-
Field Summary
Fields Modifier and Type Field Description static int
EVENT_TYPE
Event type ID.
-
Constructor Summary
Constructors Constructor Description EventLostEvent(java.lang.String source, Member member, int partitionId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EntryEventType
getEventType()
Intentionally returnsnull
.Member
getMember()
Returns the member that fired this event.java.lang.String
getName()
Returns the name of the map for this event.int
getPartitionId()
java.lang.String
toString()
-
-
-
Field Detail
-
EVENT_TYPE
public static final int EVENT_TYPE
Event type ID.- See Also:
EntryEventType
-
-
Constructor Detail
-
EventLostEvent
public EventLostEvent(java.lang.String source, Member member, int partitionId)
-
-
Method Detail
-
getPartitionId
public int getPartitionId()
-
getMember
public Member getMember()
Description copied from interface:IMapEvent
Returns the member that fired this event.
-
getEventType
public EntryEventType getEventType()
Intentionally returnsnull
.- Specified by:
getEventType
in interfaceIMapEvent
- Returns:
null
-
getName
public java.lang.String getName()
Description copied from interface:IMapEvent
Returns the name of the map for this event.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-