Merge "Created Network Service Functions Features"
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / RaftActorContext.java
index cd5865b02e77d56be17dbc3fd6f1bda9800a679f..7150ec0e6e8fd889f383a4aaace4b250a44061bc 100644 (file)
@@ -113,4 +113,17 @@ public interface RaftActorContext {
      * @return
      */
     String getPeerAddress(String peerId);
+
+    /**
+     * Add to actor peers
+     * @param name
+     * @param address
+     */
+    void addToPeers(String name, String address);
+
+    /**
+     *
+     * @param name
+     */
+    public void removePeer(String name);
 }