Skip to content

Commit 490b8a7

Browse files
committed
Add interface EventHandler
1 parent 937b065 commit 490b8a7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)