All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.chen0040.drools.StatelessRuleEngine Maven / Gradle / Ivy

The newest version!
package com.github.chen0040.drools;


import org.kie.api.command.Command;
import org.kie.api.runtime.ExecutionResults;
import org.kie.api.runtime.StatelessKieSession;

import java.util.List;


/**
 * Created by xschen on 11/7/16.
 */
public interface StatelessRuleEngine extends RuleEngine {
   ExecutionResults execute(List commands);
   void insert(List commands, String identifier, Object obj);
   void setGlobal(List commands, String identifier, Object obj, boolean out);
   void query(List commands, String identifier, String query);
   StatelessKieSession getSession();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy