When implementing Domain events should the event handlers be only used for purely domain concerns; something that you would discuss with the business experts, or are they open to be used by anything that has an interest in the domain model?
This is most probably best explained with a simple example, consider a Calendar application for scheduling work to employees.
We might have the following domain events...
AppointmentAdded AppointmentRemoved AppointmentContentChanged AppointmentMoved
We have handlers for these events, for example when an Appointment is moved to a time outside of the employees working hours we set a warning flag.
There are of course application concerns that are interested in these events, e.g. when an Appointment is added to the calendar, we should add it to the Unit of Work so we can commit the changes later.
Should these application concerns be consumers of the domain events, or should we raise and handle separate system events instead?