Beispiel #1
0
 public void sleep() {
   try {
     //// release some cpu cycles for the background network thread
     Thread.sleep(100);
   } catch (Exception e) {
   }
 }
 // Overriding "start()"
 public void start() {
   running = true;
   super.start();
 }