Bug 5740: Add ControlMessage interface to raft messages
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / base / messages / SendInstallSnapshot.java
index 6c3313f316623c10fcdf7468e1181d5941044201..e8d58f253afe09a27cc79c07e306c258e1b35929 100644 (file)
@@ -8,7 +8,30 @@
 
 package org.opendaylight.controller.cluster.raft.base.messages;
 
-import java.io.Serializable;
+import com.google.common.base.Preconditions;
+import com.google.common.io.ByteSource;
+import javax.annotation.Nonnull;
+import org.opendaylight.controller.cluster.raft.persisted.Snapshot;
 
-public class SendInstallSnapshot implements Serializable {
+/**
+ * Internal message sent from the SnapshotManager to its associated leader when a snapshot capture is complete to
+ * prompt the leader to install the snapshot on its followers as needed.
+ */
+public final class SendInstallSnapshot {
+    private final Snapshot snapshot;
+    private final ByteSource snapshotBytes;
+
+    public SendInstallSnapshot(@Nonnull Snapshot snapshot, @Nonnull ByteSource snapshotBytes) {
+        this.snapshot = Preconditions.checkNotNull(snapshot);
+        this.snapshotBytes = Preconditions.checkNotNull(snapshotBytes);
+    }
+
+    @Nonnull
+    public Snapshot getSnapshot() {
+        return snapshot;
+    }
+
+    public ByteSource getSnapshotBytes() {
+        return snapshotBytes;
+    }
 }