Interface AsyncStateRecordsCombiner

    • Method Detail

      • asyncCombine

        org.apache.flink.api.common.state.v2.StateFuture<Void> asyncCombine​(Long window,
                                                                            Iterator<org.apache.flink.table.data.RowData> records)
                                                                     throws Exception
        Combines the buffered data into async state based on the given window.
        Parameters:
        window - the window that the buffered data belong to, the window object is reused.
        records - the buffered data, the iterator and RowData objects are reused.
        Throws:
        Exception
      • close

        void close()
            throws Exception
        Release resources allocated by this combine function.
        Throws:
        Exception