Search in sources :

Example 1 with ILobbyGameController

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());
    }
}
Also used : ILobbyGameController(games.strategy.engine.lobby.server.ILobbyGameController)

Aggregations

ILobbyGameController (games.strategy.engine.lobby.server.ILobbyGameController)1