GRÜN: Erwartungen implementiert
authorKai Moritz <kai@juplo.de>
Sat, 13 Aug 2022 13:19:54 +0000 (15:19 +0200)
committerKai Moritz <kai@juplo.de>
Sat, 13 Aug 2022 20:06:57 +0000 (22:06 +0200)
src/main/java/de/juplo/kafka/AdderBusinessLogic.java

index 2e3d126..a3848c4 100644 (file)
@@ -1,13 +1,31 @@
 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);
   }
 }