Package org.cspoker.common.api.lobby.holdemtable.event

Examples of org.cspoker.common.api.lobby.holdemtable.event.CheckEvent


    context.checkOrCall();
  }

  @Override
  public GameState getUnwrappedStateAfterAction() {
    return new CheckState(gameState, new CheckEvent(actor));
  }
View Full Code Here


   */
  @Override
  public synchronized void check(MutableSeatedPlayer player)
  throws IllegalActionException {
    round.check(player);
    mediatingTable.publishCheckEvent(new CheckEvent(player.getId()));
    PlayingTableState.logger.info(player.getName() + " checks.");
    checkIfEndedAndChangeRound();
  }
View Full Code Here

      else dispatch(new CallEvent(id, movedAmount));
    }

    @Override
    public void onCheck(Check check) {
      dispatch(new CheckEvent(getId(check)));
    }
View Full Code Here

TOP

Related Classes of org.cspoker.common.api.lobby.holdemtable.event.CheckEvent

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.