[jira] [Created] (FLINK-7475) ListState support update

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (FLINK-7475) ListState support update

Shang Yuanchun (Jira)
yf created FLINK-7475:
-------------------------

             Summary: ListState support update
                 Key: FLINK-7475
                 URL: https://issues.apache.org/jira/browse/FLINK-7475
             Project: Flink
          Issue Type: Improvement
          Components: Core
            Reporter: yf


If I want to update the list.
I have to do two steps:
listState.clear()
for (Element e : myList) {
    listState.add(e);
}

Why not I update the state by:
listState.update(myList) ?



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)