Package org.wso2.carbon.rule.core

Examples of org.wso2.carbon.rule.core.Session.release()


        List<Object> facts = inputManager.processInputs(requestMessageContext);

        if (!facts.isEmpty()) {
            List results = session.execute(facts);
            if (!sessionDescription.isStateful()) {
                session.release();
            }
            return results;
        } else {
            if (log.isDebugEnabled()) {
                log.debug("There is no facts to be injected into the rule engine");
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.