Package bftsmart.communication.client
Interface ReplyReceiver
-
- All Known Implementing Classes:
AsynchServiceProxy
,ServiceProxy
,TOMSender
public interface ReplyReceiver
Interface meant for objects that receive replies from replicas
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
replyReceived(TOMMessage reply)
This is the method invoked by the client side comunication system, and where the code to handle the reply is to be written
-
-
-
Method Detail
-
replyReceived
void replyReceived(TOMMessage reply)
This is the method invoked by the client side comunication system, and where the code to handle the reply is to be written- Parameters:
reply
- The reply delivered by the client side comunication system
-
-