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.