Package org.cspoker.common.api.shared.event

Examples of org.cspoker.common.api.shared.event.ServerEvent


  public List<ActionEvent<?>> getActionResults() {
    return Collections.unmodifiableList(this.actionResults);
  }

  public void addEvents(Queue<ServerEvent> pendingEvents) {
    ServerEvent next;
    while((next=pendingEvents.poll())!=null){
      addServerEvent(next);
    }
  }
View Full Code Here

TOP

Related Classes of org.cspoker.common.api.shared.event.ServerEvent

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.