Class SlidingCountWindowStrategy<T>
- java.lang.Object
-
- org.apache.storm.trident.windowing.strategy.BaseWindowStrategy<T>
-
- org.apache.storm.trident.windowing.strategy.SlidingCountWindowStrategy<T>
-
- All Implemented Interfaces:
WindowStrategy<T>
public class SlidingCountWindowStrategy<T> extends BaseWindowStrategy<T>
This class represents sliding window strategy based on the sliding window count and sliding interval count from the givenslidingCountWindow
configuration.
-
-
Field Summary
-
Fields inherited from class org.apache.storm.trident.windowing.strategy.BaseWindowStrategy
windowConfig
-
-
Constructor Summary
Constructors Constructor Description SlidingCountWindowStrategy(WindowConfig slidingCountWindow)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EvictionPolicy<T,?>
getEvictionPolicy()
Returns anEvictionPolicy
instance which evicts elements after a count of given window length.TriggerPolicy<T,?>
getTriggerPolicy(TriggerHandler triggerHandler, EvictionPolicy<T,?> evictionPolicy)
Returns aTriggerPolicy
which triggers for every count of given sliding window.
-
-
-
Constructor Detail
-
SlidingCountWindowStrategy
public SlidingCountWindowStrategy(WindowConfig slidingCountWindow)
-
-
Method Detail
-
getTriggerPolicy
public TriggerPolicy<T,?> getTriggerPolicy(TriggerHandler triggerHandler, EvictionPolicy<T,?> evictionPolicy)
Returns aTriggerPolicy
which triggers for every count of given sliding window.
-
getEvictionPolicy
public EvictionPolicy<T,?> getEvictionPolicy()
Returns anEvictionPolicy
instance which evicts elements after a count of given window length.
-
-