Exemple #1
0
 /** Prijme spojeni od klienta */
 public ServerThread accept() throws IOException {
   ServerThread st;
   st = new ServerThread(getServerSocket().accept());
   st.setServer(this);
   st.start();
   return st;
 }