Re: notNext() and next(negation) not yielding same output in Flink CEP

2017-07-24 Thread Yassine MARZOUGUI
Hi Dawid, Thanks a lot for the explanation, it's all clear now. Best, Yassine 2017-07-23 13:11 GMT+02:00 Dawid Wysakowicz : > Hi Yassine, > > First of all notNext(A) is not equal to next(not A). notNext should be > considered as a “stopCondition” which tells if an event matching the A > conditi

Re: notNext() and next(negation) not yielding same output in Flink CEP

2017-07-23 Thread Dawid Wysakowicz
Hi Yassine, First of all notNext(A) is not equal to next(not A). notNext should be considered as a “stopCondition” which tells if an event matching the A condition occurs the current partial match is discarded. The next(not A) on the other hand accepts every event that do not match the A condit