Github user pnowojski commented on a diff in the pull request: https://github.com/apache/flink/pull/4705#discussion_r145133848 --- Diff: flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamExecutionEnvironment.java --- @@ -439,7 +439,7 @@ public CheckpointingMode getCheckpointingMode() { * from operations on {@link org.apache.flink.streaming.api.datastream.KeyedStream}) is maintained * (heap, managed memory, externally), and where state snapshots/checkpoints are stored, both for * the key/value state, and for checkpointed functions (implementing the interface - * {@link org.apache.flink.streaming.api.checkpoint.Checkpointed}). + * {@link org.apache.flink.streaming.api.checkpoint.CheckpointedFunction}). --- End diff -- > (for example implementing the interface {@link org.apache.flink.streaming.api.checkpoint.ListCheckpointed}) `CheckpointedFunction` is also deprecated
---