Class Recovery
java.lang.Object
org.apache.pekko.persistence.typed.javadsl.Recovery
- Direct Known Subclasses:
DefaultRecovery$,DisabledRecovery$
Strategy for recovery of snapshots and events.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract RecoveryasScala()static Recoverydisabled()Neither snapshots nor events are recoveredstatic org.apache.pekko.persistence.typed.internal.RecoveryWithSnapshotSelectionCriteriawithSnapshotSelectionCriteria(SnapshotSelectionCriteria snapshotSelectionCriteria) Changes the snapshot selection criteria used for the recovery.
-
Constructor Details
-
Recovery
public Recovery()
-
-
Method Details
-
disabled
Neither snapshots nor events are recovered -
withSnapshotSelectionCriteria
public static org.apache.pekko.persistence.typed.internal.RecoveryWithSnapshotSelectionCriteria withSnapshotSelectionCriteria(SnapshotSelectionCriteria snapshotSelectionCriteria) Changes the snapshot selection criteria used for the recovery.By default the most recent snapshot is used, and the remaining state updates are recovered by replaying events from the sequence number up until which the snapshot reached.
You may configure the behavior to skip replaying snapshots completely, in which case the recovery will be performed by replaying all events -- which may take a long time.
-
asScala
-