Uses of Class
org.apache.flink.streaming.api.windowing.evictors.CountEvictor
-
Packages that use CountEvictor Package Description org.apache.flink.streaming.api.windowing.evictors -
-
Uses of CountEvictor in org.apache.flink.streaming.api.windowing.evictors
Methods in org.apache.flink.streaming.api.windowing.evictors that return CountEvictor Modifier and Type Method Description static <W extends Window>
CountEvictor<W>CountEvictor. of(long maxCount)Creates aCountEvictorthat keeps the given number of elements.static <W extends Window>
CountEvictor<W>CountEvictor. of(long maxCount, boolean doEvictAfter)Creates aCountEvictorthat keeps the given number of elements in the pane Eviction is done before/after the window function based on the value of doEvictAfter.
-