This commit is contained in:
BetaSteward 2010-04-11 22:28:51 +00:00
parent efdceacaf6
commit a9a0075768
15 changed files with 257 additions and 259 deletions

View file

@ -45,7 +45,6 @@ import mage.view.GameView;
*/
public class GameWatcher {
// protected static ExecutorService rmiExecutor = ThreadExecutor.getInstance().getRMIExecutor();
protected final static Logger logger = Logging.getLogger(GameWatcher.class.getName());
protected UUID sessionId;
@ -63,18 +62,6 @@ public class GameWatcher {
if (session != null)
session.fireCallback(new ClientCallback("gameInit", gameView));
}
// rmiExecutor.submit(
// new Runnable() {
// @Override
// public void run() {
// try {
// client.init(gameView);
// } catch (RemoteException ex) {
// handleRemoteException(ex);
// }
// }
// }
// );
}
public void update(final GameView gameView) {
@ -83,18 +70,6 @@ public class GameWatcher {
if (session != null)
session.fireCallback(new ClientCallback("gameUpdate", gameView));
}
// rmiExecutor.submit(
// new Runnable() {
// @Override
// public void run() {
// try {
// client.update(gameView);
// } catch (RemoteException ex) {
// handleRemoteException(ex);
// }
// }
// }
// );
}
public void inform(final String message, final GameView gameView) {
@ -103,18 +78,6 @@ public class GameWatcher {
if (session != null)
session.fireCallback(new ClientCallback("gameInform", new GameClientMessage(gameView, message)));
}
// rmiExecutor.submit(
// new Runnable() {
// @Override
// public void run() {
// try {
// client.inform(message, gameView);
// } catch (RemoteException ex) {
// handleRemoteException(ex);
// }
// }
// }
// );
}
public void gameOver(final String message) {
@ -123,18 +86,6 @@ public class GameWatcher {
if (session != null)
session.fireCallback(new ClientCallback("gameOver", message));
}
// rmiExecutor.submit(
// new Runnable() {
// @Override
// public void run() {
// try {
// client.gameOver(message);
// } catch (RemoteException ex) {
// handleRemoteException(ex);
// }
// }
// }
// );
}
protected void handleRemoteException(RemoteException ex) {