public List<ActionEvent<?>> getActionResults() {
return Collections.unmodifiableList(this.actionResults);
}
public void addEvents(Queue<ServerEvent> pendingEvents) {
ServerEvent next;
while((next=pendingEvents.poll())!=null){
addServerEvent(next);
}
}