Interface ClientRequestTracker
-
- All Known Implementing Classes:
ClientRequestTrackerImpl
public interface ClientRequestTracker
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActorRef
getClientActor()
Returns the client actor that should be sent a response when consensus is achieved.Identifier
getIdentifier()
Returns the identifier of the object that is to be replicated.long
getIndex()
Returns the index of the log entry that is to be replicated.
-
-
-
Method Detail
-
getClientActor
ActorRef getClientActor()
Returns the client actor that should be sent a response when consensus is achieved.- Returns:
- the client actor
-
getIdentifier
Identifier getIdentifier()
Returns the identifier of the object that is to be replicated. For example a transaction identifier in the case of a transaction.- Returns:
- the identifier
-
getIndex
long getIndex()
Returns the index of the log entry that is to be replicated.- Returns:
- the index
-
-