When the rules in the .drl file is grouped into "ruleflow-group", it needs to be activated externally to fire those rules. But how to activate it in knowledge session?
I tried using the following:
ksession.getAgenda().getAgendaGroup("ruleflow-group name").setFocus();
// start the process - ruleflow is .rf file
ksession.startProcess("com.sample.ruleflow");
On running this code, there is no effect in using the first line. May I know where I need to change the code?