Examples of AsynchronousChatListener


Examples of org.cspoker.common.api.chat.listener.AsynchronousChatListener

    this.executor = executor;
  }
 
  @Override
  public ChatContext getServerChatContext(ChatListener chatListener) {
    return super.getServerChatContext(new AsynchronousChatListener(executor,chatListener));
  }
View Full Code Here

Examples of org.cspoker.common.api.chat.listener.AsynchronousChatListener

    return super.getServerChatContext(new AsynchronousChatListener(executor,chatListener));
  }
 
  @Override
  public ChatContext getTableChatContext(ChatListener chatListener,TableId tableId) {
    return super.getTableChatContext(new AsynchronousChatListener(executor,chatListener),tableId);
  }
View Full Code Here

Examples of org.cspoker.common.api.chat.listener.AsynchronousChatListener

   *            context
   */
  private void initializeChatContext(RemoteServerContext communication) {
    assert (communication != null);
    try {
      chatContext = communication.getTableChatContext(new AsynchronousChatListener(displayExecutor, gameWindow
          .getUserInputComposite()), gameWindow.getDetailedTable().getId());
    } catch (RemoteException e) {
      throw new IllegalStateException(e);
    } catch (IllegalActionException e) {
      logger.error("This should not happen", e);
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.