Package org.drools.core.common

Examples of org.drools.core.common.InternalKnowledgeRuntime


        Collection<StatefulKnowledgeSession> c = new ArrayList<StatefulKnowledgeSession>();
        StatefulSession[] sss = this.ruleBase.getStatefulSessions();
        if (sss != null) {
            for (StatefulSession ss : sss) {
                if (ss instanceof AbstractWorkingMemory) {
                    InternalKnowledgeRuntime kruntime = ((AbstractWorkingMemory) ss).getKnowledgeRuntime();
                    if( kruntime instanceof StatefulKnowledgeSession ) {
                        c.add((StatefulKnowledgeSessionImpl) kruntime);
                    }
                }
            }
View Full Code Here

TOP

Related Classes of org.drools.core.common.InternalKnowledgeRuntime

Copyright © 2018 www.massapicom. 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.