package de.juplo.kafka;
+import java.util.HashMap;
+import java.util.Map;
+
+
public class AdderBusinessLogic
{
+ private final Map<String, Long> state;
+
+
public AdderBusinessLogic()
{
+ this(new HashMap<>());
}
+ public AdderBusinessLogic(Map<String, Long> state)
+ {
+ this.state = state;
+ }
+
+
public synchronized void startSum(String user)
{
+ if (state.containsKey(user))
+ throw new IllegalStateException("Sumation for " + user + " already in progress, state: " + state.get(user));
+
+ state.put(user, 0l);
}
}