250251252253254255256
public int fireAllRules(AgendaFilter agendaFilter, int max) { return this.commandService.execute( new FireAllRulesCommand( agendaFilter, max ) ); } public void fireUntilHalt() { this.commandService.execute( new FireUntilHaltCommand() ); }
254255256257258259260
public void fireUntilHalt() { this.commandService.execute( new FireUntilHaltCommand() ); } public void fireUntilHalt(AgendaFilter agendaFilter) { this.commandService.execute( new FireUntilHaltCommand( agendaFilter ) ); }
205206207208209210211
public int fireAllRules(AgendaFilter agendaFilter) { return this.commandService.execute( new FireAllRulesCommand( agendaFilter ) ); } public void fireUntilHalt() { this.commandService.execute( new FireUntilHaltCommand() ); }
209210211212213214215
255256257258259260261
259260261262263264265
184185186187188189190
188189190191192193194