I'm trying to return the numbers of retracts that a drools session execution have.
I can obtain the number of executions:
...
final Command fireAllRulesCmd = CommandFactory.newFireAllRules("executed-rules");
cmds.add(fireAllRulesCmd);
...
session.execute(CommandFactory.newBatchExecution(cmds));
final Integer executedRules = (Integer) execute.getValue("executed-rules");
....
Are there a similar way to obtain all "retracted-rules"?
Thanks!!
Regards