You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by al...@apache.org on 2020/05/14 07:29:18 UTC

[flink] 02/02: [FLINK-17655] Remove assignTimestamps from documentation

This is an automated email from the ASF dual-hosted git repository.

aljoscha pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 68895506326729f421000ca246c6f4925575c77e
Author: Aljoscha Krettek <al...@apache.org>
AuthorDate: Wed May 13 11:15:26 2020 +0200

    [FLINK-17655] Remove assignTimestamps from documentation
    
    This was deprecated and now removed.
---
 docs/dev/stream/operators/index.md    | 25 -------------------------
 docs/dev/stream/operators/index.zh.md | 25 -------------------------
 2 files changed, 50 deletions(-)

diff --git a/docs/dev/stream/operators/index.md b/docs/dev/stream/operators/index.md
index 3fef0cf..b8eb568 100644
--- a/docs/dev/stream/operators/index.md
+++ b/docs/dev/stream/operators/index.md
@@ -449,18 +449,6 @@ DataStream<Long> output = iterationBody.filter(new FilterFunction<Long>(){
             </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>
-        </tr>
   </tbody>
 </table>
 
@@ -766,19 +754,6 @@ initialStream.iterate {
             </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>
-        </tr>
   </tbody>
 </table>
 
diff --git a/docs/dev/stream/operators/index.zh.md b/docs/dev/stream/operators/index.zh.md
index d5581f0..2f54335 100644
--- a/docs/dev/stream/operators/index.zh.md
+++ b/docs/dev/stream/operators/index.zh.md
@@ -449,18 +449,6 @@ DataStream<Long> output = iterationBody.filter(new FilterFunction<Long>(){
             </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>
-        </tr>
   </tbody>
 </table>
 
@@ -766,19 +754,6 @@ initialStream.iterate {
             </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>
-        </tr>
   </tbody>
 </table>