Package org.cspoker.common.api.lobby.holdemtable.holdemplayer.action

Examples of org.cspoker.common.api.lobby.holdemtable.holdemplayer.action.BetOrRaiseAction


    TableId tid = new TableId(1337);
   
    Queue<DispatchableAction<?>> queue = new LinkedList<DispatchableAction<?>>();
    SitInAnywhereAction action1 = new SitInAnywhereAction(eid1,tid,6500);
    queue.add(action1);
    BetOrRaiseAction action2 = new BetOrRaiseAction(eid2,tid,25);
    queue.add(action2);
   
    HTTPRequest request =  new HTTPRequest(queue);
   
    marschaller.marshal(request, output);
View Full Code Here


    this.stalePlayerContextTrigger = stalePlayerContextTrigger;
  }

  public void betOrRaise(int amount) throws RemoteException,
  IllegalActionException {
    performer.perform(new BetOrRaiseAction(generator.getNextID(),tableID,amount));
  }
View Full Code Here

TOP

Related Classes of org.cspoker.common.api.lobby.holdemtable.holdemplayer.action.BetOrRaiseAction

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.