Class StreamProject<IN,​OUT extends org.apache.flink.api.java.tuple.Tuple>

    • Constructor Detail

      • StreamProject

        public StreamProject​(int[] fields,
                             org.apache.flink.api.common.typeutils.TypeSerializer<OUT> outSerializer)
    • Method Detail

      • open

        public void open()
                  throws Exception
        Description copied from class: AbstractStreamOperator
        This method is called immediately before any elements are processed, it should contain the operator's initialization logic, e.g. state initialization.

        The default implementation does nothing.

        Specified by:
        open in interface StreamOperator<IN>
        Overrides:
        open in class AbstractStreamOperator<OUT extends org.apache.flink.api.java.tuple.Tuple>
        Throws:
        Exception - An exception in this method causes the operator to fail.