Package com.hazelcast.cp
Interface CPMapPurgeResponse
public interface CPMapPurgeResponse
Represents the result of a
CPDataStructureManagementService.purgeCPMap(java.lang.String, java.time.Duration) operation.- Since:
- 5.7.0
-
Method Summary
Modifier and TypeMethodDescriptionlongReturns the timestamp of the oldest entry that remains after the purge.intReturns the number of entries removed during the purge operation.
-
Method Details
-
purgedCount
int purgedCount()Returns the number of entries removed during the purge operation.- Returns:
- number of purged entries; always non-negative
-
oldestRemainingEntryTimestamp
long oldestRemainingEntryTimestamp()Returns the timestamp of the oldest entry that remains after the purge.- Returns:
- timestamp of the oldest remaining entry
-