196197198199200201202
public void fireUntilHalt() { this.commandService.execute( new FireUntilHaltCommand() ); } public void fireUntilHalt(AgendaFilter agendaFilter) { this.commandService.execute( new FireUntilHaltCommand( agendaFilter ) ); }
256257258259260261262
public int fireAllRules(AgendaFilter agendaFilter, int max) { return this.commandService.execute( new FireAllRulesCommand( agendaFilter, max ) ); } public void fireUntilHalt() { this.commandService.execute( new FireUntilHaltCommand() ); }
260261262263264265266
255256257258259260261
259260261262263264265
250251252253254255256
public int fireAllRules(AgendaFilter agendaFilter) { return this.commandService.execute( new FireAllRulesCommand( agendaFilter ) ); } public void fireUntilHalt() { this.commandService.execute( new FireUntilHaltCommand() ); }