Uses of Interface
org.apache.flink.util.Collector
-
-
Uses of Collector in org.apache.flink.api.common.functions
Methods in org.apache.flink.api.common.functions with parameters of type Collector Modifier and Type Method Description voidCoGroupFunction. coGroup(Iterable<IN1> first, Iterable<IN2> second, Collector<O> out)This method must be implemented to provide a user implementation of a coGroup.abstract voidRichCoGroupFunction. coGroup(Iterable<IN1> first, Iterable<IN2> second, Collector<OUT> out)voidGroupCombineFunction. combine(Iterable<IN> values, Collector<OUT> out)The combine method, called (potentially multiple timed) with subgroups of elements.abstract voidRichGroupCombineFunction. combine(Iterable<IN> values, Collector<OUT> out)voidFlatMapFunction. flatMap(T value, Collector<O> out)The core method of the FlatMapFunction.abstract voidRichFlatMapFunction. flatMap(IN value, Collector<OUT> out)voidFlatJoinFunction. join(IN1 first, IN2 second, Collector<OUT> out)The join method, called once per joined pair of elements.abstract voidRichFlatJoinFunction. join(IN1 first, IN2 second, Collector<OUT> out)voidMapPartitionFunction. mapPartition(Iterable<T> values, Collector<O> out)A user-implemented function that modifies or transforms an incoming object.abstract voidRichMapPartitionFunction. mapPartition(Iterable<I> values, Collector<O> out)voidGroupReduceFunction. reduce(Iterable<T> values, Collector<O> out)The reduce method.abstract voidRichGroupReduceFunction. reduce(Iterable<IN> values, Collector<OUT> out) -
Uses of Collector in org.apache.flink.api.common.functions.util
Classes in org.apache.flink.api.common.functions.util that implement Collector Modifier and Type Class Description classCopyingListCollector<T>ACollectorthat collects deep copies of its elements in a list.classListCollector<T>ACollectorthat puts the collected elements into a given list. -
Uses of Collector in org.apache.flink.api.common.operators.base
Methods in org.apache.flink.api.common.operators.base with parameters of type Collector Modifier and Type Method Description voidBulkIterationBase.TerminationCriterionMapper. flatMap(X in, Collector<X> out) -
Uses of Collector in org.apache.flink.api.common.serialization
Methods in org.apache.flink.api.common.serialization with parameters of type Collector Modifier and Type Method Description default voidDeserializationSchema. deserialize(byte[] message, Collector<T> out)Deserializes the byte message.
-