Interval Scheduler with Quartz in Axon

Hi,

is there a way to configure persisted scheduled events in Axon as an interval (e.g. fire this event every x days)? QuartzEventScheduler does not seem to be usable for such reoccurring events… Do I have to use “plain” Quartz to accomplish this?

Regards
Marc

Hi Marc,

the EventScheduler was not designed, nor intended to be a fully fledged scheduling engine. So this is unfortunately not possible.
If you need anything other than simply “publish in [period of time]” or “publish at [instant]”, we’d recommend to use a scheduler directly. So, yes, “plain” Quartz could help here.

Cheers,

Allard