View Javadoc
1   package otherTests.multicast;
2   
3   public interface StatusListener {
4       void messageSent(Client toClient);
5   
6       void messageDisplayedByClient(Client client);
7   
8       void messageReadByClient(Client client);
9   }