Class SingleInputOperator<IN,​OUT,​O extends SingleInputOperator<IN,​OUT,​O>>

    • Constructor Detail

      • SingleInputOperator

        protected SingleInputOperator​(DataSet<IN> input,
                                      org.apache.flink.api.common.typeinfo.TypeInformation<OUT> resultType)
        Deprecated.
    • Method Detail

      • getInput

        public DataSet<IN> getInput()
        Deprecated.
        Gets the data set that this operation uses as its input.
        Returns:
        The data set that this operation uses as its input.
      • getInputType

        public org.apache.flink.api.common.typeinfo.TypeInformation<IN> getInputType()
        Deprecated.
        Gets the type information of the data type of the input data set. This method returns equivalent information as getInput().getType().
        Returns:
        The input data type.
      • translateToDataFlow

        protected abstract org.apache.flink.api.common.operators.Operator<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.
        Parameters:
        input - The data flow operator that produces this operation's input data.
        Returns:
        The translated data flow operator.