Hi,

is there a way to get events that didnt match within the given time frame.

for example:

define stream publisher (pid string, time string);
define stream subscriber (pid string, sid string, time string);

from every (e1=publisher) -> e2=subscriber[e1.pid == pid]
within 10 sec
select e1.pid, e2.sid
insert into seen_in_last_10_sec_events;


so if i have matching event above, i will see it in
seen_in_last_10_sec_events, but is there a way to get all events or non
matched events during that last 10 seconds from publisher or subscriber ?

also is there a way to perform intersection of events based on grouping or
time window ?


Thanks
Jay
_______________________________________________
Dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/dev

Reply via email to