Class FlatMapOperator<IN,OUT>
- java.lang.Object
-
- org.apache.flink.api.java.DataSet<OUT>
-
- org.apache.flink.api.java.operators.Operator<OUT,O>
-
- org.apache.flink.api.java.operators.SingleInputOperator<IN,OUT,O>
-
- org.apache.flink.api.java.operators.SingleInputUdfOperator<IN,OUT,FlatMapOperator<IN,OUT>>
-
- org.apache.flink.api.java.operators.FlatMapOperator<IN,OUT>
-
- Type Parameters:
IN- The type of the data set consumed by the operator.OUT- The type of the data set created by the operator.
- All Implemented Interfaces:
UdfOperator<FlatMapOperator<IN,OUT>>
@Deprecated @Public public class FlatMapOperator<IN,OUT> extends SingleInputUdfOperator<IN,OUT,FlatMapOperator<IN,OUT>>
Deprecated.All Flink DataSet APIs are deprecated since Flink 1.18 and will be removed in a future Flink major version. You can still build your application in DataSet, but you should move to either the DataStream and/or Table API.This operator represents the application of a "flatMap" function on a data set, and the result data set produced by the function.
-
-
Field Summary
Fields Modifier and Type Field Description protected StringdefaultNameDeprecated.protected org.apache.flink.api.common.functions.FlatMapFunction<IN,OUT>functionDeprecated.-
Fields inherited from class org.apache.flink.api.java.operators.Operator
minResources, name, parallelism, preferredResources
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected org.apache.flink.api.common.functions.FlatMapFunction<IN,OUT>getFunction()Deprecated.protected org.apache.flink.api.common.operators.base.FlatMapOperatorBase<IN,OUT,org.apache.flink.api.common.functions.FlatMapFunction<IN,OUT>>translateToDataFlow(org.apache.flink.api.common.operators.Operator<IN> input)Deprecated.Translates this operation to a data flow operator of the common data flow API.-
Methods inherited from class org.apache.flink.api.java.operators.SingleInputUdfOperator
extractSemanticAnnotations, getAnalyzedUdfSemanticsFlag, getBroadcastSets, getParameters, getSemanticProperties, returns, returns, returns, setAnalyzedUdfSemanticsFlag, setSemanticProperties, udfWithForwardedFieldsAnnotation, withBroadcastSet, withForwardedFields, withParameters
-
Methods inherited from class org.apache.flink.api.java.operators.SingleInputOperator
getInput, getInputType
-
Methods inherited from class org.apache.flink.api.java.operators.Operator
getMinResources, getName, getParallelism, getPreferredResources, getResultType, name, setParallelism
-
Methods inherited from class org.apache.flink.api.java.DataSet
aggregate, checkSameExecutionContext, clean, coGroup, collect, combineGroup, count, cross, crossWithHuge, crossWithTiny, distinct, distinct, distinct, distinct, fillInType, filter, first, flatMap, fullOuterJoin, fullOuterJoin, getExecutionEnvironment, getType, groupBy, groupBy, groupBy, iterate, iterateDelta, join, join, joinWithHuge, joinWithTiny, leftOuterJoin, leftOuterJoin, map, mapPartition, max, maxBy, min, minBy, output, partitionByHash, partitionByHash, partitionByHash, partitionByRange, partitionByRange, partitionByRange, partitionCustom, partitionCustom, partitionCustom, print, print, printOnTaskManager, printToErr, printToErr, project, rebalance, reduce, reduceGroup, rightOuterJoin, rightOuterJoin, runOperation, sortPartition, sortPartition, sortPartition, sum, union, write, write, writeAsCsv, writeAsCsv, writeAsCsv, writeAsCsv, writeAsFormattedText, writeAsFormattedText, writeAsText, writeAsText
-
-
-
-
Method Detail
-
getFunction
protected org.apache.flink.api.common.functions.FlatMapFunction<IN,OUT> getFunction()
Deprecated.- Specified by:
getFunctionin classSingleInputUdfOperator<IN,OUT,FlatMapOperator<IN,OUT>>
-
translateToDataFlow
protected org.apache.flink.api.common.operators.base.FlatMapOperatorBase<IN,OUT,org.apache.flink.api.common.functions.FlatMapFunction<IN,OUT>> translateToDataFlow(org.apache.flink.api.common.operators.Operator<IN> input)
Deprecated.Description copied from class:SingleInputOperatorTranslates this operation to a data flow operator of the common data flow API.- Specified by:
translateToDataFlowin classSingleInputOperator<IN,OUT,FlatMapOperator<IN,OUT>>- Parameters:
input- The data flow operator that produces this operation's input data.- Returns:
- The translated data flow operator.
-
-