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%2FRaftActorContext.java;h=a099b996236df9b1b668cd61a67cf00460cae529;hp=c325875950169854685c2746178524155eb5f6fc;hb=bef65394c7f540b601ce4bd360d7d7648f289bd1;hpb=9491b06df9419e58db3089a4c5cd9f5407cb9aac diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/RaftActorContext.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/RaftActorContext.java index c325875950..a099b99623 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/RaftActorContext.java +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/RaftActorContext.java @@ -13,9 +13,11 @@ import akka.actor.ActorSelection; import akka.actor.ActorSystem; import akka.actor.Props; import com.google.common.annotations.VisibleForTesting; -import com.google.common.base.Supplier; import java.util.Collection; +import java.util.function.LongSupplier; +import javax.annotation.Nullable; import org.opendaylight.controller.cluster.DataPersistenceProvider; +import org.opendaylight.controller.cluster.raft.behaviors.RaftActorBehavior; import org.opendaylight.controller.cluster.raft.policy.RaftPolicy; import org.slf4j.Logger; @@ -112,6 +114,11 @@ public interface RaftActorContext { */ String getPeerAddress(String peerId); + /** + * @param serverCfgPayload + */ + void updatePeerIds(ServerConfigurationPayload serverCfgPayload); + /** * @return list of PeerInfo */ @@ -201,7 +208,7 @@ public interface RaftActorContext { * @param retriever a supplier of the total memory metric */ @VisibleForTesting - void setTotalMemoryRetriever(Supplier retriever); + void setTotalMemoryRetriever(LongSupplier retriever); /** * @@ -213,4 +220,36 @@ public interface RaftActorContext { * @return an implementation of the RaftPolicy so that the Raft code can be adapted */ RaftPolicy getRaftPolicy(); + + /** + * @return true if there are any dynamic server configuration changes available, + * false if static peer configurations are still in use + */ + boolean isDynamicServerConfigurationInUse(); + + /** + * Configures the dynamic server configurations are avaialble for the RaftActor + */ + void setDynamicServerConfigurationInUse(); + + /** + * @return the RaftActor's peer information as a ServerConfigurationPayload if the + * dynamic server configurations are available, otherwise returns null + */ + @Nullable ServerConfigurationPayload getPeerServerInfo(boolean includeSelf); + + /** + * @return true if this RaftActor is a voting member of the cluster, false otherwise. + */ + boolean isVotingMember(); + + /** + * @return true if there are any voting peers, false otherwise. + */ + boolean anyVotingPeers(); + + /** + * @return current behavior attached to the raft actor. + */ + RaftActorBehavior getCurrentBehavior(); }