What is the purpose of exists? How is :
rule "sample"
when
exists MyObject(status == "start")
then
// do something
end
different from:
rule "sample"
when
MyObject(status == "start")
then
// do something
end
What is the purpose of exists? How is :
rule "sample"
when
exists MyObject(status == "start")
then
// do something
end
different from:
rule "sample"
when
MyObject(status == "start")
then
// do something
end