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=afe680cc21b03c660c463628365f1873186c6278;hp=4972b348ff4d98d8e0d1eb2b1135ccf53f837768;hb=a0b8be5ce48c0d1e0b573d1952211913c58d4935;hpb=c46e223995956f1f759c551163c212947c1e2fb7 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..afe680cc21 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,25 @@ 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 * - * @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(); + Identifier 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();