ROT: Erwartungen an SumBusinessLogic.endSum(String)
[demos/kafka/training] / src / main / java / de / juplo / kafka / SumBusinessLogic.java
index cea533f..73db4cf 100644 (file)
@@ -2,15 +2,40 @@ package de.juplo.kafka;
 
 import java.util.HashMap;
 import java.util.Map;
+import java.util.Optional;
 
 
 public class SumBusinessLogic
 {
+  private final Map<String, Long> state;
+
+
   public SumBusinessLogic()
   {
+    this(new HashMap<>());
   }
 
+  public SumBusinessLogic(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);
+  }
+
+  public synchronized Optional<Long> getSum(String user)
+  {
+    return Optional.ofNullable(state.get(user));
+  }
+
+  public synchronized Long endSum(String user)
+  {
+    return null;
   }
 }