Uses of Interface
org.apache.flink.api.common.eventtime.WatermarkGenerator
-
Packages that use WatermarkGenerator Package Description org.apache.flink.api.common.eventtime -
-
Uses of WatermarkGenerator in org.apache.flink.api.common.eventtime
Classes in org.apache.flink.api.common.eventtime that implement WatermarkGenerator Modifier and Type Class Description classAscendingTimestampsWatermarks<T>A watermark generator that assumes monotonically ascending timestamps within the stream split and periodically generates watermarks based on that assumption.classBoundedOutOfOrdernessWatermarks<T>A WatermarkGenerator for situations where records are out of order, but you can place an upper bound on how far the events are out of order.classNoWatermarksGenerator<E>An implementation of aWatermarkGeneratorthat generates no Watermarks.classWatermarksWithIdleness<T>A WatermarkGenerator that adds idleness detection to another WatermarkGenerator.Methods in org.apache.flink.api.common.eventtime that return WatermarkGenerator Modifier and Type Method Description WatermarkGenerator<T>WatermarkGeneratorSupplier. createWatermarkGenerator(WatermarkGeneratorSupplier.Context context)Instantiates aWatermarkGenerator.WatermarkGenerator<T>WatermarkStrategy. createWatermarkGenerator(WatermarkGeneratorSupplier.Context context)Instantiates a WatermarkGenerator that generates watermarks according to this strategy.Constructors in org.apache.flink.api.common.eventtime with parameters of type WatermarkGenerator Constructor Description WatermarksWithIdleness(WatermarkGenerator<T> watermarks, java.time.Duration idleTimeout)Creates a new WatermarksWithIdleness generator to the given generator idleness detection with the given timeout.
-