use of games.strategy.engine.lobby.server.ILobbyGameController in project triplea by triplea-game.
the class InGameLobbyWatcher method postUpdate.
private void postUpdate() {
if (isShutdown) {
return;
}
synchronized (mutex) {
final ILobbyGameController controller = (ILobbyGameController) remoteMessenger.getRemote(ILobbyGameController.GAME_CONTROLLER_REMOTE);
controller.updateGame(gameId, (GameDescription) gameDescription.clone());
}
}
Aggregations