Esempio n. 1
0
  public void start() {
    notifyStart();

    // Run in a thread
    server = createUdpServer();
    server.run();
  }
Esempio n. 2
0
 public void stop() {
   notifyStop();
   if (server != null) {
     server.stop();
   }
 }