We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4c1cb3 commit c7b709dCopy full SHA for c7b709d
src/main/java/io/loom/eventsourcing/EventReader.java
@@ -0,0 +1,8 @@
1
+package io.loom.eventsourcing;
2
+
3
+import java.util.UUID;
4
+import java.util.concurrent.Future;
5
6
+public interface EventReader {
7
+ Future<Iterable<Object>> queryEvents(UUID streamId, long fromVersion);
8
+}
0 commit comments