Class StreamFlatMap<IN,​OUT>

    • Constructor Detail

      • StreamFlatMap

        public StreamFlatMap​(org.apache.flink.api.common.functions.FlatMapFunction<IN,​OUT> flatMapper)
    • 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 AbstractUdfStreamOperator<OUT,​org.apache.flink.api.common.functions.FlatMapFunction<IN,​OUT>>
        Throws:
        Exception - An exception in this method causes the operator to fail.