Package de.pokerth.protocol.ProtoBuf

Examples of de.pokerth.protocol.ProtoBuf.PlayerInfoRequestMessage


    tmpList.add(playerId);
    sendPlayerInfoRequest(s, tmpList);
  }

  protected void sendPlayerInfoRequest(Socket s, Collection<Integer> playerIds) throws Exception {
    PlayerInfoRequestMessage request = PlayerInfoRequestMessage.newBuilder()
      .addAllPlayerId(playerIds)
      .build();
    PokerTHMessage msg = PokerTHMessage.newBuilder()
        .setMessageType(PokerTHMessageType.Type_PlayerInfoRequestMessage)
        .setPlayerInfoRequestMessage(request)
View Full Code Here

TOP

Related Classes of de.pokerth.protocol.ProtoBuf.PlayerInfoRequestMessage

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.