rulebook
rulebook copied to clipboard
100% Java, Lambda Enabled, Lightweight Rules Engine with a Simple and Intuitive DSL
I was expecting by using `RuleBuilder.create(GoldenRule.class, RuleChainActionType.ERROR_ON_FAILURE)` I an create a Rule which will throw RuleException in case of a error while executing the rule. But it didn't work and...
When using RuleBookRunner4PojoClasses class, the rules are not executed in the order defined by order property, in Rule interface I found this issue recently, and I have an easy fix...
Suppose I have a class ``` public class MyRuleBook extends CoRRuleBook { // some named rules here } ``` And I want to reference that class in the RuleBookBuilder process:...
Hi, I am trying to set rule to throw exception on failure, i followed the [documentation](https://github.com/deliveredtechnologies/rulebook#36-rule-chain-behavior) but it seems the rule still gets it default CONTINUE_ON_FAILURE. I tried to debug...
Hello! I saw that the last commit was made on October 19, 2020. Is the project still being monitored for bug fixes, new features, etc? I'm asking because I'm evaluating...
While stress testing Rulebook I found that the lambdas in GoldenRule.java line 176 hits StackOverFlowError. This is observed with Rulebook core 0.12. Using Fluent API When number of objects of...
How do you create a role where the condition/evaluation is async? For example, I need to make a HTTP request to verify a fact and return the result.
Hi, I am currently trying to use RuleBook to define a bidding system for bridge. It seems well suited for this - typically a bidding system has rules such as...
We have a rukle book in Spring Boot. We have only just started with the first 10 of when will probably be over 100 rules. It's already getting good feedback...
There are a number of deprecated warnings when using the examples in the README. For instance, ```RuleBook``` is deprecated, as it ```getIntVal()``` and ```getDblVal()```. Is there an updated set of...