GRÜN: Erwartungen implementiert
[demos/kafka/training] / src / main / java / de / juplo / kafka / AdderBusinessLogic.java
index df8c5f9..1f8ebc2 100644 (file)
@@ -32,6 +32,14 @@ public class AdderBusinessLogic
 
   public synchronized Optional<Long> getSum(String user)
   {
-    return Optional.empty();
+    return Optional.ofNullable(state.get(user));
+  }
+
+  public synchronized Long endSum(String user)
+  {
+    if (!state.containsKey(user))
+      throw new IllegalStateException("No sumation for " + user + " in progress");
+
+    return state.get(user);
   }
 }