You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ch...@apache.org on 2020/11/03 02:51:16 UTC

[kafka] branch trunk updated: MINOR: Fix an example in the Kafka Streams tutorial to be compilable (#6647)

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

chia7712 pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new fb3d26d  MINOR: Fix an example in the Kafka Streams tutorial to be compilable (#6647)
fb3d26d is described below

commit fb3d26d5b7dd3103c6e2eff4ac30b6d790b2f263
Author: Kengo Seki <se...@apache.org>
AuthorDate: Tue Nov 3 11:49:49 2020 +0900

    MINOR: Fix an example in the Kafka Streams tutorial to be compilable (#6647)
    
    Reviewers: Chia-Ping Tsai <ch...@gmail.com>
---
 docs/streams/tutorial.html | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/docs/streams/tutorial.html b/docs/streams/tutorial.html
index eeb90d6..7cdb5a8 100644
--- a/docs/streams/tutorial.html
+++ b/docs/streams/tutorial.html
@@ -581,11 +581,15 @@
         package myapps;
 
         import org.apache.kafka.common.serialization.Serdes;
+        import org.apache.kafka.common.utils.Bytes;
         import org.apache.kafka.streams.KafkaStreams;
         import org.apache.kafka.streams.StreamsBuilder;
         import org.apache.kafka.streams.StreamsConfig;
         import org.apache.kafka.streams.Topology;
         import org.apache.kafka.streams.kstream.KStream;
+        import org.apache.kafka.streams.kstream.Materialized;
+        import org.apache.kafka.streams.kstream.Produced;
+        import org.apache.kafka.streams.state.KeyValueStore;
 
         import java.util.Arrays;
         import java.util.Locale;