Package org.cspoker.common.api.chat.context

Examples of org.cspoker.common.api.chat.context.ChatContext


    }
  }

  public ChatContext getTableChatContext(TableId tableID) {
    synchronized (tableChatLock) {
      ChatContext chatContext;
      if (!tableChatContexts.containsKey(tableID)) {
        chatContext = super.getTableChatContext(
            new UniversalTableChatListener(listener, tableID),
            tableID);
        tableChatContexts.put(tableID, chatContext);
View Full Code Here

TOP

Related Classes of org.cspoker.common.api.chat.context.ChatContext

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.