[hotfix][javadocs] Update javadoc of InternalTimerService.registerEventTimeTimer()
This closes #5677. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/511f388d Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/511f388d Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/511f388d Branch: refs/heads/master Commit: 511f388d9d000a7ac84d45f41bffde514caa21b5 Parents: 80ee267 Author: Bowen Li <[email protected]> Authored: Fri Mar 9 23:35:15 2018 -0800 Committer: zentol <[email protected]> Committed: Wed Mar 14 20:46:23 2018 +0100 ---------------------------------------------------------------------- .../apache/flink/streaming/api/operators/InternalTimerService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/511f388d/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/InternalTimerService.java ---------------------------------------------------------------------- diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/InternalTimerService.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/InternalTimerService.java index f55cb03..cb171fb 100644 --- a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/InternalTimerService.java +++ b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/InternalTimerService.java @@ -49,7 +49,7 @@ public interface InternalTimerService<N> { void deleteProcessingTimeTimer(N namespace, long time); /** - * Registers a timer to be fired when processing time passes the given time. The namespace + * Registers a timer to be fired when event time watermark passes the given time. The namespace * you pass here will be provided when the timer fires. */ void registerEventTimeTimer(N namespace, long time);
