Package com.hazelcast.map.listener
Interface MapPartitionLostListener
-
- All Superinterfaces:
java.util.EventListener
,MapListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface MapPartitionLostListener extends MapListener
Invoked when owner and all backups of a partition is lost for a specific map.- Since:
- 3.5
- See Also:
MapPartitionLostEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
partitionLost(MapPartitionLostEvent event)
Invoked when owner and all backups of a partition is lost for a specific map.
-
-
-
Method Detail
-
partitionLost
void partitionLost(MapPartitionLostEvent event)
Invoked when owner and all backups of a partition is lost for a specific map.- Parameters:
event
- the event object that contains map name and lost partition ID
-
-