5 lines
89 B
Java
5 lines
89 B
Java
package com.eventsourcing.es;
|
|
|
|
public interface Projection {
|
|
void when(Event event);
|
|
} |