Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A senior programmer wants to use my observer pattern class for updating different object when a subject changes. Now The subject will change by receiving messages with different semantics. Let say that there are two types of messages, mA and mB and I have three observers oX, oY, and oZ.

  • oX wants to know about mA
  • oY wants to know about mB
  • oZ wants to know about mA and mB

He is telling me to have some logic (if-else) in the subject side saying that

  • if mA arrives, send it to oX and oZ
  • if mB arrives, send it to oY and oZ

To me, that feels fishy because it makes the subject to know about the concrete types of its observers (I'm using an abstract class to broadcast to the observers)

It feels more like a router aware of the destination than a broadcast to whomever is interesting on listening. Since I'm a junior programmer, I didn't object but it feels like its breaking the pattern.

share|improve this question
Nservice Bus ?.... – Mitch Wheat Jun 9 '11 at 0:08

2 Answers

up vote 1 down vote accepted

You are right. That knowledge would have to be in some kind of dispatcher. That could range from super simple, in which case it is basically a Mediator, to something more complex, in which case you want to pull down the Doug Schmidt books and have a look at some of his solutions (e.g. Reactor or Proactor).

The other option is to support different listeners. For instance, I could have a lifecycle listener for a wizard, in which case, I will trigger on onStart(), onNext() and onFinish(). Then there is no logic, the other side just pays attention to the things that it's interested in, or triggers its behaviors based on the remote event state.

You can always turn Observer inside out by using Command. If someone is saying to you 'hey, when x happens, if y is true, do z,' you can have a command that has that if y do z inside and you are just triggering it when x happens (by calling execute()).

share|improve this answer
I thought about using different listeners, but a Command seems a simple solution as well. Thanks! – Armando Jun 9 '11 at 18:15

Without knowing more details I would tend to agree with you. Especially if the components are all in the same memory space, just broadcast the message and let the observers sort out what they are interseted in. But there may be more to the specific problem than you realize. Try to understand why he wants it this way. There are often hidden bits of history on a project that drive seemingly odd decisions.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.