예제 #1
0
파일: Server.java 프로젝트: w4-pwr/studia
 public synchronized void removeClientData(ClientData cd) {
   try {
     clientList.remove(cd);
     clientList.trimToSize();
     sendList();
   } catch (IOException e) {
     e.printStackTrace();
   }
 }
예제 #2
0
파일: Server.java 프로젝트: w4-pwr/studia
 public void removethread(ServerThread st) {
   clientList.remove(st);
   clientList.trimToSize();
 }