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

index 549228c..1f8ebc2 100644 (file)
@@ -37,6 +37,9 @@ public class AdderBusinessLogic
 
   public synchronized Long endSum(String user)
   {
-    return null;
+    if (!state.containsKey(user))
+      throw new IllegalStateException("No sumation for " + user + " in progress");
+
+    return state.get(user);
   }
 }