Package org.menacheri.jetserver.event.impl

Examples of org.menacheri.jetserver.event.impl.ExecutorEventDispatcher


        * SESSIONS_PER_GAME_ROOM);
    for (int i = 1; i <= NUM_OF_GAME_ROOMS; i++)
    {
      GameRoomSessionBuilder sessionBuilder = new GameRoomSessionBuilder();
      sessionBuilder.parentGame(game).gameRoomName("Zombie_ROOM_" + i)
          .protocol(DUMMY_PROTOCOL).eventDispatcher(new ExecutorEventDispatcher());
      Session gameRoomSession = new TestGameRoom(sessionBuilder);
      gameRoomSession.addHandler(new GameRoomSessionHandler(
          gameRoomSession));
      gameRoomList.add((GameRoom) gameRoomSession);
    }
View Full Code Here

TOP

Related Classes of org.menacheri.jetserver.event.impl.ExecutorEventDispatcher

Copyright © 2018 www.massapicom. 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.