Sliding window function
Output produced only when an event occurs. Events can belong to more than one window.
Session windowing function
The session windowing function allows you to group streaming events that arrive at similar time, and filter out time periods where no data exists. It’s native to Stream Analytics
Tumbling windowing function
Segment data into distinct time segments. They repeat, do not overlap and an event can’t belong to more than one window.
Hopping windowing function
Hopping window functions hop forward in time by a fixed period. They can overlap, to make them the same as the tumbling window specify the same hop size and window size.