Fork me on GitHub
#onyx
<
2015-12-16
>
michaeldrogalis21:12:44

Onyx 0.8.3 has been released, and contains several critical bug fixes: https://github.com/onyx-platform/onyx/blob/0.8.x/changes.md

thomas21:12:11

one other question I had... can I write something that would create an event when A happens and B has NOT happened within time period X? (10 seconds for instance)

michaeldrogalis21:12:21

@thomas: Yep. You could use a Timer trigger, set to fire every 10 seconds, and collect events A, B, etc into a window. When trigger fires, a synchronization function gets called, where you can do your and/or/not logic.

thomas21:12:53

ok cool, thank you