View Javadoc
1   /*
2    * MIT License
3    * Copyright (c) 2006-2025 JMockit developers
4    * See LICENSE file for full license text.
5    */
6   package otherTests.multicast;
7   
8   public interface StatusListener {
9       void messageSent(Client toClient);
10  
11      void messageDisplayedByClient(Client client);
12  
13      void messageReadByClient(Client client);
14  }