문제

I'm trying to understand when it is appropriate to use events. It seems to me that an event can be thought of as an SQL trigger. Then, is it correct to use an event triggered by one domain object to modify another, or will it imply lack of a well thought out design if we use events to modify other object's states? Or should there be a mediator class through which these objects should modify each other? How do I decide?

Are there any tradeoffs that I should be concerned about here, like how use of events will affect testability?

도움이 되었습니까?

해결책

Events are designed to decouple one area from another.

This sometimes involves some asynchronous behavior, which can be an additional feature, but is not mandatory. For example, if you want to provide rapid feedback to the user in a GUI, and a part of your code runs too slowly (unless it needs to be finished before providing feedback), then the regular call can execute fast codes, and create an event for the others, then provide GUI feedback without waiting for the event to be actually processed. This event is stored in a Queue, and one or more threads are processing that Queue at their own pace.

For synchronous events, it is really useful for inter-module communication, where the two modules don't have compile-time dependencies on each other. Both can know about an event class, and an "event router" :

  • one module creates an event and call the router,
  • the router knows (from previous configuration) what other module should receive it, and send it to the receiving module.

Neither module know about the other, thus the decoupling concept. Very good if both must be maintained separately :-)


Many variations exist, for some topics like:

  • broadcasting to many receivers
  • fail-over (if the receiver is down temporarily, it starts again ; the event will be delivered when the receiver is up and registered again)
  • auditing : a technical module can receive events targeted at other modules, and log them
  • ...

Modifying Domain objects via events seems a bit strange. Is the decoupling mentioned higher really justified?

However, I wouldn't give a definite opinion before understanding more precisely what you have in mind.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top