Axon 3, replaying all events from the event store.

Is there an example of how one can replay all the events from the event store and the events get picked up by all methods annotated with @EventHandler?

Cheers
Kim

Currently, the TrackingEventProcessor is still under development. The current implementation doesn’t work reliably in all database implementations. However, replaying is pretty easy, if you use the TrackingEventProcessor.

Simply remove the tracking token stored under the processor’s name from the TokenStore and clear the tables managed by the event handlers. When started, the tracker will start from the beginning to process events.

Cheers,

Allard