Package org.cspoker.server.embedded.chat.room

Examples of org.cspoker.server.embedded.chat.room.TableChatRoom.sendMessage()


    serverChatRoom.sendMessage(player, message);
  }

  public void sendTableMessage(long tableId,Player player, String message) {
    TableChatRoom chatroom = tables.get(new TableId(tableId));
    chatroom.sendMessage(player, message);
  }
  public TableChatRoom addTableChatRoom(PokerTable table){
    return tables.put(table.getTableId(),new TableChatRoom(table));
  }
  public TableChatRoom getTableChatRoom(TableId tableId){
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.