counter: 1.1.4 - Introduced parameters for the config needed by the test
[demos/kafka/wordcount] / src / main / java / de / juplo / kafka / wordcount / counter / CounterApplicationProperties.java
index d670ba2..c3ada17 100644 (file)
@@ -15,6 +15,8 @@ public class CounterApplicationProperties
 {
   private String bootstrapServer = "localhost:9092";
   private String applicationId = "counter";
-  private String inputTopic = "recordings";
+  private String inputTopic = "words";
   private String outputTopic = "countings";
+  private Integer commitInterval;
+  private Integer cacheMaxBytes;
 }