We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description:
@App:name('axx') define stream RegulatorStateChangeStream(id string, deviceID long, roomNo int, tempSet double, action string); define stream RoomKeyStream(id string, deviceID long, roomNo int, action string); @sink(type='log') define stream RegulatorActionStream(id1 string, id2 string, roomNo int, action string); from every (e1=RegulatorStateChangeStream[ action == 'on'] and e2=RoomKeyStream[ action == 'removed' ]) select e1.id as id1, e2.id as id2, e1.roomNo, ifThenElse( e2 is null, 'none', 'stop' ) as action insert into RegulatorActionStream;
if I send data as follow:
regulatorStateChangeStreamHandler.send(new Object[] {"a", 10L, 5, 30, "on"}); roomKeyStreamHandler.send(new Object[]{"b1", 10, 5, "removed"});
I will get one match, but If I reverse the order of sending data, I will not get any match
Affected Siddhi Version: 5.x.x OS, DB, other environment details and versions:
Steps to reproduce:
Related Issues:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description:
if I send data as follow:
I will get one match, but If I reverse the order of sending data, I will not get any match
Affected Siddhi Version:
5.x.x
OS, DB, other environment details and versions:
Steps to reproduce:
Related Issues:
The text was updated successfully, but these errors were encountered: