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=0f14844d5666e5ee6f73f3d7cb005b607c41b3a7;hp=4972b348ff4d98d8e0d1eb2b1135ccf53f837768;hb=000960f6451af770f5463e41e1fb6defb6f3ab27;hpb=b66641aff093e1e2ac0719aba6b0194c2fd48e36 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..0f14844d56 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 @@ -9,25 +9,28 @@ package org.opendaylight.controller.cluster.raft; import akka.actor.ActorRef; +import org.opendaylight.yangtools.concepts.Identifier; public interface ClientRequestTracker { /** - * The client actor who is waiting for a response + * Returns the client actor that should be sent a response when consensus is achieved. * - * @return + * @return the client actor */ ActorRef getClientActor(); /** + * Returns the identifier of the object that is to be replicated. For example a transaction identifier in the case + * of a transaction. * - * @return + * @return the identifier */ - String getIdentifier(); + Identifier getIdentifier(); /** - * The index of the log entry which needs to be replicated + * Returns the index of the log entry that is to be replicated. * - * @return + * @return the index */ long getIndex();