Repository: flink Updated Branches: refs/heads/release-1.1 b3ad0284d -> 3cf494a3e
[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/3cf494a3 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/3cf494a3 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/3cf494a3 Branch: refs/heads/release-1.1 Commit: 3cf494a3ee2d16e0e1bd096d15d68c6973be72c3 Parents: b3ad028 Author: Jendrik Poloczek <[email protected]> Authored: Mon Aug 29 12:10:28 2016 +0200 Committer: Robert Metzger <[email protected]> Committed: Mon Aug 29 16:18:33 2016 +0200 ---------------------------------------------------------------------- docs/apis/streaming/event_timestamp_extractors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/3cf494a3/docs/apis/streaming/event_timestamp_extractors.md ---------------------------------------------------------------------- diff --git a/docs/apis/streaming/event_timestamp_extractors.md b/docs/apis/streaming/event_timestamp_extractors.md index 83a90d2..f5e26a6 100644 --- a/docs/apis/streaming/event_timestamp_extractors.md +++ b/docs/apis/streaming/event_timestamp_extractors.md @@ -92,7 +92,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(); } });
