Observer Design Pattern

The Observer’s design pattern is used primarily when we are interested in any change of status being notified to anyone who needs to know about that change.

In the observer design pattern, the object that looks at the state of another object is called “Observer” and the object that is “looking” those changes is called “Subject”.

[Read More]