Package bftsmart.communication.client
Interface RequestReceiver
-
- All Known Implementing Classes:
TOMLayer
public interface RequestReceiverInterface meant for objects that receive requests from clients
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidrequestReceived(TOMMessage msg, boolean fromClient)This is the method invoked by the CommunicationSystemServerSide, to deliver a client request.
-
-
-
Method Detail
-
requestReceived
void requestReceived(TOMMessage msg, boolean fromClient)
This is the method invoked by the CommunicationSystemServerSide, to deliver a client request. The code to handle requests should be put here.- Parameters:
msg- The request delivered by the TOM layerfromClient- The request was received from a client
-
-