Package org.cspoker.external.pokersource.commands.poker

Examples of org.cspoker.external.pokersource.commands.poker.Check


  public void checkOrCall() throws IllegalActionException, RemoteException {
    if(!isSittingIn) {
      throw new IllegalActionException("Can't act when not sitting in.");
    }
    try {
      if(betLimitCall==0) conn.sendRemote(new Check(serial, game_id));
      else conn.sendRemote(new Call(serial, game_id));
    } catch (JSONException e) {
      throw new IllegalActionException(e);
    }
  }
View Full Code Here

TOP

Related Classes of org.cspoker.external.pokersource.commands.poker.Check

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.