254255256257258259260
public void fireUntilHalt() { this.commandService.execute( new FireUntilHaltCommand() ); } public void fireUntilHalt(AgendaFilter agendaFilter) { this.commandService.execute( new FireUntilHaltCommand( agendaFilter ) ); }
178179180181182183184
public int fireAllRules(AgendaFilter agendaFilter) { return this.commandService.execute( new FireAllRulesCommand( agendaFilter ) ); } public void fireUntilHalt() { this.commandService.execute( new FireUntilHaltCommand() ); }
182183184185186187188
262263264265266267268
public int fireAllRules(AgendaFilter agendaFilter, int max) { return this.commandService.execute( new FireAllRulesCommand( agendaFilter, max ) ); } public void fireUntilHalt() { this.commandService.execute( new FireUntilHaltCommand() ); }
266267268269270271272
234235236237238239240
238239240241242243244