Hi Larry,By now, it seems to me that the windowing API might not be the right solution for your use case. The fact that sensors can shut down arbitrarily makes it hard to calculate what window an event should fall into.
Have you tried looking into `ProcessFunction`? With this you can keep state and set timers to fire, both based on event time and processing time. You could store your sensor data and calculate results and evict events on timer firings.
Best, Aljoscha