Package akka.persistence.typed.scaladsl
Interface SnapshotCountRetentionCriteria
-
- All Superinterfaces:
RetentionCriteria
public interface SnapshotCountRetentionCriteria extends RetentionCriteria
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SnapshotCountRetentionCriteria
withDeleteEventsOnSnapshot()
Delete events after saving snapshot viaRetentionCriteria.snapshotEvery
.-
Methods inherited from interface akka.persistence.typed.scaladsl.RetentionCriteria
asJava
-
-
-
-
Method Detail
-
withDeleteEventsOnSnapshot
SnapshotCountRetentionCriteria withDeleteEventsOnSnapshot()
Delete events after saving snapshot viaRetentionCriteria.snapshotEvery
. Events that have sequence number less than the snapshot sequence number minuskeepNSnapshots * numberOfEvents
are deleted.
-
-