Uses of Interface
org.apache.flink.streaming.api.functions.source.datagen.DataGenerator
Packages that use DataGenerator
-
Uses of DataGenerator in org.apache.flink.streaming.api.functions.source.datagen
Classes in org.apache.flink.streaming.api.functions.source.datagen that implement DataGeneratorModifier and TypeClassDescriptionclassRandom generator.classA stateful, re-scalableDataGeneratorthat emits each number from a given interval exactly once, possibly in parallel.Methods in org.apache.flink.streaming.api.functions.source.datagen with parameters of type DataGeneratorModifier and TypeMethodDescriptionstatic <T> RandomGenerator<T[]>RandomGenerator.arrayGenerator(DataGenerator<T> generator, int len) static <K,V> RandomGenerator<Map<K, V>> RandomGenerator.mapGenerator(DataGenerator<K> key, DataGenerator<V> value, int size) Constructors in org.apache.flink.streaming.api.functions.source.datagen with parameters of type DataGeneratorModifierConstructorDescriptionDataGeneratorSource(DataGenerator<T> generator) Deprecated.Creates a source that emits records byDataGeneratorwithout controlling emit rate.DataGeneratorSource(DataGenerator<T> generator, long rowsPerSecond, Long numberOfRows) Deprecated.Creates a source that emits records byDataGenerator.