Examples of InternalAgenda


Examples of org.drools.runtime.rule.impl.InternalAgenda

    return (DynamicNode) getNode();
  }
 
    public void internalTrigger(NodeInstance from, String type) {
      triggerEvent(ExtendedNodeImpl.EVENT_NODE_ENTER);
      InternalAgenda agenda =  (InternalAgenda) getProcessInstance().getKnowledgeRuntime().getAgenda();
      ((AgendaImpl) agenda).getAgenda().getRuleFlowGroup(getRuleFlowGroupName()).setAutoDeactivate(false);
      agenda.activateRuleFlowGroup(
      getRuleFlowGroupName(), getProcessInstance().getId(), getUniqueId());
//      if (getDynamicNode().isAutoComplete() && getNodeInstances(false).isEmpty()) {
//        triggerCompleted(NodeImpl.CONNECTION_DEFAULT_TYPE);
//      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.