/* * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * 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 akka.actor.ActorRef; public interface ClientRequestTracker { /** * * @return the client actor that should be sent a response when consensus is achieved */ ActorRef getClientActor(); /** * * @return the identifier of the object that is to be replicated. For example a transaction identifier in the case * of a transaction */ String getIdentifier(); /** * * @return the index of the log entry that is to be replicated */ long getIndex(); }