Class SimpleEventScheduler

java.lang.Object
org.axonframework.eventhandling.scheduling.java.SimpleEventScheduler
All Implemented Interfaces:
EventScheduler, Lifecycle

public class SimpleEventScheduler extends Object implements EventScheduler, Lifecycle
An EventScheduler implementation that uses Java's ScheduledExecutorService as scheduling and triggering mechanism.

Note that this mechanism is non-persistent. Scheduled tasks will be lost when the JVM is shut down, unless special measures have been taken to prevent that. For more flexible and powerful scheduling options, see QuartzEventScheduler.

Since:
0.7
Author:
Allard Buijze
See Also: