X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-akka-raft%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fraft%2FSnapshotState.java;h=5d1304fe752222214a82b9d877da996dc517feb4;hp=46e0c87fc21d6ca6bb9a5a49e4ec9aa8538cc969;hb=b8c6400766f7324dd57d059bd48e435569fe1a27;hpb=81236f34ad88ffcb71c8d7cdb15b82bad2e50251 diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/SnapshotState.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/SnapshotState.java index 46e0c87fc2..5d1304fe75 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/SnapshotState.java +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/SnapshotState.java @@ -8,7 +8,7 @@ package org.opendaylight.controller.cluster.raft; -import org.opendaylight.controller.cluster.raft.behaviors.RaftActorBehavior; +import org.opendaylight.controller.cluster.raft.base.messages.ApplySnapshot; public interface SnapshotState { /** @@ -42,7 +42,7 @@ public interface SnapshotState { * * @param snapshot the Snapshot to apply. */ - void apply(Snapshot snapshot); + void apply(ApplySnapshot snapshot); /** * Persist the snapshot @@ -51,14 +51,14 @@ public interface SnapshotState { * @param currentBehavior * @param totalMemory */ - void persist(byte[] snapshotBytes, RaftActorBehavior currentBehavior, long totalMemory); + void persist(byte[] snapshotBytes, long totalMemory); /** * Commit the snapshot by trimming the log * * @param sequenceNumber */ - void commit(long sequenceNumber, RaftActorBehavior currentBehavior); + void commit(long sequenceNumber); /** * Rollback the snapshot @@ -71,5 +71,5 @@ public interface SnapshotState { * @param desiredTrimIndex * @return the actual trim index */ - long trimLog(long desiredTrimIndex, RaftActorBehavior currentBehavior); + long trimLog(long desiredTrimIndex); }