rule "STANDARD - set available application"
salience(2)
when
accumulate ( Application( $priority : priority, running == false), $highestPriority : min( $priority ) )
then
System.out.println("set app: "+$highestPriority );
end
我的代码在上面。我的目标是找到运行 == false 的应用程序并获得这些应用程序的最高优先级(最高值是最低值),但此规则会在所有应用程序上触发并忽略我的情况。想法???