Asciidoc-Tags entfernt
[demos/kafka/training] / src / main / java / de / juplo / kafka / SimpleConsumer.java
index 03a9e6a..ef8d7e3 100644 (file)
@@ -46,14 +46,11 @@ public class SimpleConsumer
       log.info("{} - Subscribing to topic test", id);
       consumer.subscribe(Arrays.asList("test"));
 
-      // tag::loop[]
       while (running)
       {
         ConsumerRecords<String, String> records =
             consumer.poll(Duration.ofSeconds(1));
 
-        // Do something with the data...
-        // end::loop[]
         log.info("{} - Received {} messages", id, records.count());
         for (ConsumerRecord<String, String> record : records)
         {
@@ -68,9 +65,7 @@ public class SimpleConsumer
               record.value()
           );
         }
-        // tag::loop[]
       }
-      // end::loop[]
     }
     catch(Exception e)
     {