counter: 1.2.0 - Service reads/writes using `JsonSerde`
[demos/kafka/wordcount] / src / main / java / de / juplo / kafka / wordcount / counter / WordCount.java
1 package de.juplo.kafka.wordcount.counter;
2
3 import lombok.Value;
4
5
6 @Value(staticConstructor = "of")
7 public class WordCount
8 {
9   String user;
10   String word;
11   long count;
12 }