Split up RecoveringClientActorBehavior.onReceiveRecover()
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / messages / UnInitializedFollowerSnapshotReply.java
index f5c44f87e4fe687f636a7b9f101b667a228552e7..ff11ca0317ce9f8adae08ba2751bd4609bb8603e 100644 (file)
@@ -7,11 +7,13 @@
  */
 package org.opendaylight.controller.cluster.raft.messages;
 
+import akka.dispatch.ControlMessage;
+
 /**
  * Local message sent to self on receiving the InstallSnapshotReply from a follower indicating that
  * the catch up of the follower has completed successfully for an AddServer operation.
  */
-public class  UnInitializedFollowerSnapshotReply {
+public class UnInitializedFollowerSnapshotReply implements ControlMessage {
     private final String followerId;
 
     public UnInitializedFollowerSnapshotReply(String followerId) {