167168169170171172173
public void fireUntilHalt() { this.commandService.execute( new FireUntilHaltCommand() ); } public void fireUntilHalt(AgendaFilter agendaFilter) { this.commandService.execute( new FireUntilHaltCommand( agendaFilter ) ); }
163164165166167168169
public int fireAllRules(AgendaFilter agendaFilter) { return this.commandService.execute( new FireAllRulesCommand( agendaFilter ) ); } public void fireUntilHalt() { this.commandService.execute( new FireUntilHaltCommand() ); }
178179180181182183184
182183184185186187188