Saga and delayed events/timer/scheduling sample code with Quartz and DB

Is there a good starting point sample code for this feature set? to get familiar with setup and lifecycle in alignment with traditional ARs, Entities and VOs with their Bounded Contexts?

Thanks in advance…

Hi,

in Saga’s, you can use the EventScheduler to schedule delayed events. There are two implementations, one that uses Java’s SchedulingTaskExecutor and on that uses Quartz. Make sure to mark any resources used in Sagas as “transient”, to make sure the platform will not try to persist them as part of the saga. Axon will make sure these resources are injected when Sagas are loaded.

I don’t have an extensive code sample yet, but there is work in progress on an extensive sample-app. There is a bit of sample code in the reference guide (http://www.axonframework.org/docs/1.0/sagas.html).

If you have any specific questions, let me know.

Cheers,

Allard