예제 #1
0
 /** Sends a message over the network with more information about this client. */
 public void sendClientInfo() {
   messages.sendClient();
 }
예제 #2
0
 /**
  * Sends the necessary network messages to log the user onto the network and query for the users
  * and state.
  */
 private void sendLogOn() {
   messages.sendLogonMessage();
   messages.sendClient();
   messages.sendExposeMessage();
   messages.sendGetTopicMessage();
 }