quarks-edge / quarks

Quarks is an open source programming model and runtime for edge devices that enables you to analyze data and events at the device.
http://quarks-edge.github.io/
Apache License 2.0
123 stars 42 forks source link

Create a window from another streams's window #74

Open ddebrunner opened 8 years ago

ddebrunner commented 8 years ago

Allows creation of a stream window with the same configuration as an existing window.

// Create a new window with the same configuration as another window TWindow<T,Object> window(TWindow<?,?> configWindow);

ddebrunner commented 8 years ago

I think the signature needs to be:

`TWindow window(TWindow configWindow, Function keyer);`