We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 937b065 commit 490b8a7Copy full SHA for 490b8a7
src/main/java/io/loom/eventsourcing/EventHandler.java
@@ -0,0 +1,5 @@
1
+package io.loom.eventsourcing;
2
+
3
+public interface EventHandler<T> {
4
+ T handleEvents(T state, Iterable<Object> events);
5
+}
0 commit comments