public interface EventProcessor
An event processor. Can change any data in events
abstract List<Event>
process(List<Event> events)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
abstract List<Event> process(List<Event> events)
You can add, remove or change events here. Return list (can be empty) of events, which will be pushed to next EventProcessor.
events