Github user bowenli86 commented on a diff in the pull request:
https://github.com/apache/flink/pull/4963#discussion_r159762966
--- Diff:
flink-core/src/main/java/org/apache/flink/api/common/state/ListState.java ---
@@ -33,4 +35,14 @@
* @param <T> Type of values that this list state keeps.
*/
@PublicEvolving
-public interface ListState<T> extends MergingState<T, Iterable<T>> {}
+public interface ListState<T> extends MergingState<T, Iterable<T>> {
+ /**
+ * Updates the state of the current key for the given source namespaces
into the state of
+ * the target namespace.
+ *
+ * @param values The target namespace where the merged state should be
stored.
+ *
+ * @throws Exception The method may forward exception thrown internally
(by I/O or functions).
+ */
+ void update(List<T> values) throws Exception;
--- End diff --
@StefanRRichter agree. The correct way to do should be changing
`ListState#get()`. I filed
[FLINK-8364](https://issues.apache.org/jira/browse/FLINK-8364) and will work on
it after this PR is checked in
---