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%2FFollowerLogInformation.java;h=4367a7a151ff729bcac7de25f4fbeaf54b114089;hp=5f185cbb9c872efe200522c3b93b554623157dd7;hb=224aa4f574c63576961dc9dc37e075e2e5096a5a;hpb=cf5be659d906cc80d52647cb516bbab435156742 diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/FollowerLogInformation.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/FollowerLogInformation.java index 5f185cbb9c..4367a7a151 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/FollowerLogInformation.java +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/FollowerLogInformation.java @@ -5,11 +5,8 @@ * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ - package org.opendaylight.controller.cluster.raft; -import java.util.concurrent.atomic.AtomicLong; - /** * The state of the followers log as known by the Leader */ @@ -17,35 +14,108 @@ public interface FollowerLogInformation { /** * Increment the value of the nextIndex - * @return + * + * @return the new value of nextIndex + */ + long incrNextIndex(); + + /** + * Decrement the value of the nextIndex + * + * @return the new value of nextIndex */ - public long incrNextIndex(); + long decrNextIndex(); + + /** + * Sets the index of the next log entry for this follower. + * + * @param nextIndex + * @return true if the new index differed from the current index and the current index was updated, false + * otherwise. + */ + boolean setNextIndex(long nextIndex); /** * Increment the value of the matchIndex - * @return + * + * @return the new value of matchIndex */ - public long incrMatchIndex(); + long incrMatchIndex(); /** - * The identifier of the follower - * This could simply be the url of the remote actor + * Sets the index of the highest log entry for this follower. + * + * @param matchIndex + * @return true if the new index differed from the current index and the current index was updated, false + * otherwise. */ - public String getId(); + boolean setMatchIndex(long matchIndex); /** - * for each server, index of the next log entry - * to send to that server (initialized to leader - * last log index + 1) + * + * @return the identifier of the follower. This could simply be the url of the remote actor. */ - public AtomicLong getNextIndex(); + String getId(); /** - * for each server, index of highest log entry - * known to be replicated on server - * (initialized to 0, increases monotonically) + * @return index of the next log entry to send to that server (initialized to leader last log index + 1) */ - public AtomicLong getMatchIndex(); + long getNextIndex(); + /** + * @return index of highest log entry known to be replicated on server (initialized to 0, increases monotonically) + */ + long getMatchIndex(); + + /** + * Checks if the follower is active by comparing the last updated with the duration + * + * @return true if follower is active, false otherwise + */ + boolean isFollowerActive(); + + /** + * restarts the timeout clock of the follower + */ + void markFollowerActive(); + + /** + * This will stop the timeout clock + */ + void markFollowerInActive(); + + /** + * This will return the active time of follower, since it was last reset + * + * @return time in milliseconds since the last activity from the follower + */ + long timeSinceLastActivity(); + + /** + * This method checks if it is ok to replicate + * + * @return true if it is ok to replicate, false otherwise + */ + boolean okToReplicate(); + + /** + * @return the payload data version of the follower. + */ + short getPayloadVersion(); + + /** + * Sets the payload data version of the follower. + */ + void setPayloadVersion(short payloadVersion); + + /** + * @return the raft version of the follower. + */ + short getRaftVersion(); + + /** + * Sets the raft version of the follower. + */ + void setRaftVersion(short payloadVersion); }