We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be12291 commit a9ca8c9Copy full SHA for a9ca8c9
src/main/java/io/loom/eventsourcing/EventCollector.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 EventCollector {
7
+ Future<Void> collectEvents(UUID streamId, long firstVersion, Iterable<Object> events);
8
+}
0 commit comments