eep-js
eep-js copied to clipboard
eep.js - Embedded Event Processing
This PR adds 3 commits with the following changes: 1. Adds the window operator object into the Temporal functions. This way an Aggregate function can call for a tick() on...
Adds the window operator object into the Temporal functions. This way an Aggregate function can call for a tick() on the window even for clock based windows. Added some tests...
Just saw your repo, thought it quite inspiring and thought I would add a missing link.
Given the following code using a fresh checkout of the repository on node v0.10.26: ``` javascript var windows = eep.EventWorld.make().windows(); var win = windows.sliding(eep.Stats.min, 3); win = windows.ordered(win); win.on('emit', function(value)...
I think to make this useful, a declarative language and parser is needed. (e.g. compare Esper). Anyway, this is the proper way to start to make such a framework generic....
Hi, It seems that it's very possible to avoid using Temporal and Temporal function (actually, it's done quite similarly in Erlang implementation). I believe that what they do technically belongs...