Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eyedol/rule-engine
Simple Rule based engine
https://github.com/eyedol/rule-engine
Last synced: about 5 hours ago
JSON representation
Simple Rule based engine
- Host: GitHub
- URL: https://github.com/eyedol/rule-engine
- Owner: eyedol
- License: mit
- Created: 2015-11-24T04:06:47.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T11:42:03.000Z (11 months ago)
- Last Synced: 2023-12-15T12:46:43.104Z (11 months ago)
- Language: Java
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### RuleEngine
A tiny simple rule engine. You define a bunch of supported expressions, then build a bunch of
rules that needs to be satisfied. When a particular rule is satisfied a corresponding action is
triggered otherwise it returns false. See the examples folder to see how to use it. The project is built with Gradle.
This is based on the [Interpreter Pattern][1]```
$ cd rule-engine
$ ./gradlew runEngineExample
```[1]: https://en.wikipedia.org/wiki/Interpreter_pattern