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

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


    TableChatRoom room=tables.get(id);
    if(room==null)
      throw new IllegalArgumentException("There exists no table with the given id!");
    if(room.getTable().hasAsJoinedPlayer(id2)){
      // only players who joined the table, are allowed to unsubscribe their listener
      room.unSubscribe(chatlistener);
    }
  }
}
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.