You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by rm...@apache.org on 2016/08/29 14:17:57 UTC

flink git commit: [hotfix][docs] fixed timestamp extractor documentation Java example

Repository: flink
Updated Branches:
  refs/heads/master 1f1788619 -> 1d53a40a6


[hotfix][docs] fixed timestamp extractor documentation Java example

This closes #2433


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/1d53a40a
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/1d53a40a
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/1d53a40a

Branch: refs/heads/master
Commit: 1d53a40a67d8554df43c6d64a0eab09a8cf4a13d
Parents: 1f17886
Author: Jendrik Poloczek <jp...@users.noreply.github.com>
Authored: Mon Aug 29 12:10:28 2016 +0200
Committer: Robert Metzger <rm...@apache.org>
Committed: Mon Aug 29 16:17:22 2016 +0200

----------------------------------------------------------------------
 docs/dev/event_timestamp_extractors.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/1d53a40a/docs/dev/event_timestamp_extractors.md
----------------------------------------------------------------------
diff --git a/docs/dev/event_timestamp_extractors.md b/docs/dev/event_timestamp_extractors.md
index a9ec6e5..e83f540 100644
--- a/docs/dev/event_timestamp_extractors.md
+++ b/docs/dev/event_timestamp_extractors.md
@@ -90,7 +90,7 @@ DataStream<MyEvent> withTimestampsAndWatermarks =
     stream.assignTimestampsAndWatermarks(new BoundedOutOfOrdernessTimestampExtractor<MyEvent>(Time.seconds(10)) {
 
         @Override
-        public long extractAscendingTimestamp(MyEvent element) {
+        public long extractTimestamp(MyEvent element) {
             return element.getCreationTime();
         }
 });