Uses of Interface
org.apache.flink.streaming.api.functions.source.datagen.DataGenerator
-
Packages that use DataGenerator Package Description org.apache.flink.streaming.api.functions.source.datagen -
-
Uses of DataGenerator in org.apache.flink.streaming.api.functions.source.datagen
Classes in org.apache.flink.streaming.api.functions.source.datagen that implement DataGenerator Modifier and Type Class Description classRandomGenerator<T>Random generator.classSequenceGenerator<T>A 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 DataGenerator Modifier and Type Method Description static <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 DataGenerator Constructor Description DataGeneratorSource(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.
-