Drools规则语言:规则并不总是被解雇

时间:2016-02-27 20:45:40

标签: java drools drools-fusion

我是Drools Fusion的新手,我想弄清楚为什么我的规则不是 总是被解雇我正在使用Drools 6.3。这些是我要插入的事件:

    private static void initMessageObject() {
    SessionPseudoClock clock = ksession.getSessionClock();

    hellodrools2.AppInfo app = new hellodrools2.AppInfo();
    entryPoint1.insert(app);
    System.out.println(app);

    Steps step1 = new Steps(25, 0);
    entryPoint1.insert(step1);

    clock.advanceTime(30, TimeUnit.MINUTES);

    Steps step2 = new Steps(15, 0);
    entryPoint1.insert(step2);

    clock.advanceTime(15, TimeUnit.MINUTES);

    Steps step3 = new Steps(25, 0);
    entryPoint1.insert(step3);

    try {
        System.err.println("[[ Sleeping ...]]");
        Thread.sleep(5000);
    } catch (final InterruptedException e) {
        e.printStackTrace();
    }
    System.err.println("[[ awake ...]]");

    ksession.halt();
    ksession.dispose();
}

这是我的规则文件:

import hellodrools.Steps
import hellodrools.AppInfo

declare Steps
    @role(event)
end

rule "STEPS RULE"
when
    $totalSteps : Number( doubleValue < 50 ) from accumulate(
        Steps( stepsCount : steps ) over window:time( 1h ) from entry-point
       entryone, sum( stepsCount ) )
then
    System.out.println("STEPS RULE: get moving!");
    System.out.println($totalSteps);
end

这是我的输出:

AppInfo{startTime=Sat Feb 27 21:30:42 CET 2016}
[[ Sleeping ...]]
STEPS RULE: get moving!
0.0
[[ awake ...]]

我希望我的规则会触发2次并提供以下输出:

AppInfo{startTime=Sat Feb 27 21:30:42 CET 2016}
[[ Sleeping ...]]
STEPS RULE: get moving!
25.0
STEPS RULE: get moving!
40.0
[[ awake ...]]

我可能会忽视一些事情,但我没有找到关于我的更多信息 问题。有人可以解释一下这里发生了什么吗? 谢谢。

1 个答案:

答案 0 :(得分:1)

使用Drools运行事件处理有两种好方法。

一种是在线程中运行会话,在使用实时时钟时调用fireUntilHalt。在生产模式中,事件将到达并插入;用于测试,使用运行脚本的线程进行模拟以插入事件事实并暂停以让实时过去(用秒替换分钟)。

另一个非常适合测试的,使用伪时钟和一系列事件事实及其时间戳(单独或作为属性),执行三元组

clock.advance( ...event.timestamp - clock.getCurrentTime()... );
wmep.insert( event );
ksession.fireAllRules();

每个事件都反复出现。这适用于5.5及更高版本,产生您期望的结果。