什麼是寫在Drools中的條件的最佳方式CEP推斷(A後最大時間B) 實施例: a : new A();
b : new B(this after [1m])
上面的例子不是我的需要。 我需要這樣的: a : new A();
b : new B(this after a , b.timestamp - a.timestamp <= 60000)
所以我重新制定的問題。另一種方式是用較
這條規則有什麼錯。 rule "Organization Employee Rule"
when
$company: CompanyFact($emp: /employeeList{organizationName== "XYZ"})
then
System.out.println("Employee in organization" +$emp);