Skip to content

Commit

Permalink
[FLINK-17655] Remove assignTimestamps from documentation
Browse files Browse the repository at this point in the history
This was deprecated and now removed.
  • Loading branch information
aljoscha committed May 14, 2020
1 parent bc369e2 commit 6889550
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 50 deletions.
25 changes: 0 additions & 25 deletions docs/dev/stream/operators/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -445,18 +445,6 @@ DataStream<Long> output = iterationBody.filter(new FilterFunction<Long>(){
return value <= 0;
}
});
{% endhighlight %}
</p>
</td>
</tr>
<tr>
<td><strong>Extract Timestamps</strong><br>DataStream &rarr; DataStream</td>
<td>
<p>
Extracts timestamps from records in order to work with windows
that use event time semantics. See <a href="{{ site.baseurl }}/dev/event_time.html">Event Time</a>.
{% highlight java %}
stream.assignTimestamps (new TimeStampExtractor() {...});
{% endhighlight %}
</p>
</td>
Expand Down Expand Up @@ -762,19 +750,6 @@ initialStream.iterate {
(iterationBody.filter(_ > 0), iterationBody.filter(_ <= 0))
}
}
{% endhighlight %}
</p>
</td>
</tr>
<tr>
<td><strong>Extract Timestamps</strong><br>DataStream &rarr; DataStream</td>
<td>
<p>
Extracts timestamps from records in order to work with windows
that use event time semantics.
See <a href="{{ site.baseurl }}/dev/event_time.html">Event Time</a>.
{% highlight scala %}
stream.assignTimestamps { timestampExtractor }
{% endhighlight %}
</p>
</td>
Expand Down
25 changes: 0 additions & 25 deletions docs/dev/stream/operators/index.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -445,18 +445,6 @@ DataStream<Long> output = iterationBody.filter(new FilterFunction<Long>(){
return value <= 0;
}
});
{% endhighlight %}
</p>
</td>
</tr>
<tr>
<td><strong>Extract Timestamps</strong><br>DataStream &rarr; DataStream</td>
<td>
<p>
Extracts timestamps from records in order to work with windows
that use event time semantics. See <a href="{{ site.baseurl }}/dev/event_time.html">Event Time</a>.
{% highlight java %}
stream.assignTimestamps (new TimeStampExtractor() {...});
{% endhighlight %}
</p>
</td>
Expand Down Expand Up @@ -762,19 +750,6 @@ initialStream.iterate {
(iterationBody.filter(_ > 0), iterationBody.filter(_ <= 0))
}
}
{% endhighlight %}
</p>
</td>
</tr>
<tr>
<td><strong>Extract Timestamps</strong><br>DataStream &rarr; DataStream</td>
<td>
<p>
Extracts timestamps from records in order to work with windows
that use event time semantics.
See <a href="{{ site.baseurl }}/dev/event_time.html">Event Time</a>.
{% highlight scala %}
stream.assignTimestamps { timestampExtractor }
{% endhighlight %}
</p>
</td>
Expand Down

0 comments on commit 6889550

Please sign in to comment.