Package org.ggp.base.server

Examples of org.ggp.base.server.GameServer.abort()


  public synchronized void abortOngoingMatch(String matchID) {
    if (gameServers.containsKey(matchID)) {
      GameServer server = gameServers.get(matchID).get();
      if (server != null) {
        server.abort();
      }
    }
  }

  private synchronized void doSchedule(PendingMatch spec) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.