예제 #1
0
  public void start() {
    notifyStart();

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