I am sending data from an inject node through a filter node (so its only sent through again if the data changes) to a trigger node.
Once it reaches the trigger node, it instantly sends one bit of data to a database.
10 seconds later, another message is sent to the database.
Is it possible to cancel the trigger node part way through? If the initial input changes?
So if 0 is sent by the inject, the filter will send 'hello' followed up by 'world', 10 seconds after.
If 1 is sent by the inject, the filter will send 'testing' followed up by 'theory', 10 seconds after.
Is it possible for 0 to be injected, then after the first message, 'hello' is sent, 1 is injected, so instead of 'world' it would go to 'testing', 'theory'.
Hope my explanation makes sense.
Thanks in advance