Examples of AsynchronousHoldemPlayerListener


Examples of org.cspoker.common.api.lobby.holdemtable.holdemplayer.listener.AsynchronousHoldemPlayerListener

  public void sitIn(SeatId seatId, int amount)
      throws RemoteException, IllegalActionException {
    if (tableContext == null)
      throw new IllegalStateException("No table context available, you can not sit in");
    assert (seatId.getId() >= 0 && seatId.getId() != Long.MAX_VALUE) : "Illegal seat id provided: " + seatId;
    playerContext = tableContext.sitIn(seatId, amount, new AsynchronousHoldemPlayerListener(displayExecutor,
        gameWindow));
  }
View Full Code Here

Examples of org.cspoker.common.api.lobby.holdemtable.holdemplayer.listener.AsynchronousHoldemPlayerListener

    this.executor = executor;
  }

  @Override
  public HoldemPlayerContext sitIn(SeatId seatId, int amount, HoldemPlayerListener holdemPlayerListener) throws IllegalActionException {
    return super.sitIn(seatId, amount, new AsynchronousHoldemPlayerListener(executor,holdemPlayerListener));
  }
View Full Code Here

Examples of org.cspoker.common.api.lobby.holdemtable.holdemplayer.listener.AsynchronousHoldemPlayerListener

    return super.sitIn(seatId, amount, new AsynchronousHoldemPlayerListener(executor,holdemPlayerListener));
  }
 
  @Override
  public HoldemPlayerContext sitIn(int amount, HoldemPlayerListener holdemPlayerListener) throws IllegalActionException {
    return super.sitIn(amount, new AsynchronousHoldemPlayerListener(executor,holdemPlayerListener));
  }
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.