Class RichPatternFlatSelectFunction<IN,​OUT>

    • Constructor Detail

      • RichPatternFlatSelectFunction

        public RichPatternFlatSelectFunction()
    • Method Detail

      • flatSelect

        public abstract void flatSelect​(Map<String,​List<IN>> pattern,
                                        Collector<OUT> out)
                                 throws Exception
        Description copied from interface: PatternFlatSelectFunction
        Generates zero or more resulting elements given a map of detected pattern events. The events are identified by their specified names.
        Specified by:
        flatSelect in interface PatternFlatSelectFunction<IN,​OUT>
        Parameters:
        pattern - Map containing the found pattern. Events are identified by their names.
        out - Collector used to output the generated elements
        Throws:
        Exception - This method may throw exceptions. Throwing an exception will cause the operation to fail and may trigger recovery.