Пример #1
0
 /**
  * Stop WebSocket Server
  *
  * @throws Exception
  */
 public static synchronized void stopServer() throws Exception {
   if (sInstance == null) {
     return;
   }
   sInstance.setListener(null);
   sInstance.stop();
   sInstance = null;
 }