Github user uce commented on a diff in the pull request:

    https://github.com/apache/flink/pull/3272#discussion_r99614243
  
    --- Diff: docs/dev/stream/state.md ---
    @@ -113,9 +113,19 @@ be retrieved using `Iterable<T> get()`.
     added to the state. The interface is the same as for `ListState` but 
elements added using
     `add(T)` are reduced to an aggregate using a specified `ReduceFunction`.
     
    +* `FoldingState<T, ACC>`: This keeps a single value that represents the 
aggregation of all values
    +added to the state. Contrary to `ReducingState`, the aggregate type is 
different from the type of
    +elements that are added to the state. The interface is the same as for 
`ListState` but elements
    +added using `add(T)` are folded into an aggregate using a specified 
`FoldFunction`.
    +
     All types of state also have a method `clear()` that clears the state for 
the currently
     active key, i.e. the key of the input element.
     
    +<span class="label label-danger">Attention</span> `FoldingState` will be 
deprecated in one of
    +the next versions of Flink and will be completely removed in the Future. A 
more general
    --- End diff --
    
    Future should be lower case


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to