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%2FClientRequestTracker.java;h=af6f1d453ab59e6d4a1dc8212e9678c17eb01a73;hp=4972b348ff4d98d8e0d1eb2b1135ccf53f837768;hb=250f3f77c80284536cc32e96739f713d21844103;hpb=244d226cc66672e2e15d0b557bd1af37153d8065 diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/ClientRequestTracker.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/ClientRequestTracker.java index 4972b348ff..af6f1d453a 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/ClientRequestTracker.java +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/ClientRequestTracker.java @@ -12,22 +12,21 @@ import akka.actor.ActorRef; public interface ClientRequestTracker { /** - * The client actor who is waiting for a response * - * @return + * @return the client actor that should be sent a response when consensus is achieved */ ActorRef getClientActor(); /** * - * @return + * @return the identifier of the object that is to be replicated. For example a transaction identifier in the case + * of a transaction */ String getIdentifier(); /** - * The index of the log entry which needs to be replicated * - * @return + * @return the index of the log entry that is to be replicated */ long getIndex();