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 351ea18..c3ada17 100644 (file)
@@ -17,4 +17,6 @@ public class CounterApplicationProperties
   private String applicationId = "counter";
   private String inputTopic = "words";
   private String outputTopic = "countings";
+  private Integer commitInterval;
+  private Integer cacheMaxBytes;
 }