Class WindowingStrategy<T,W extends BoundedWindow>

java.lang.Object
org.apache.beam.sdk.values.WindowingStrategy<T,W>
Type Parameters:
T - type of elements being windowed
W - BoundedWindow subclass used to represent the windows used by this WindowingStrategy
All Implemented Interfaces:
Serializable

@Internal public class WindowingStrategy<T,W extends BoundedWindow> extends Object implements Serializable
A WindowingStrategy describes the windowing behavior for a specific collection of values. It has both a WindowFn describing how elements are assigned to windows and a Trigger that controls when output is produced for each window.
See Also: