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