Observer Design Pattern
Nov 1 · 2 min read

Observer design pattern can be an architectural solution to several behavior problems that appear in software architecture or development. The pattern is applicable to the following cases:
- When a change to one object requires the change or update in another object while we do not know how many objects need to be changed.
- When an object should be able to notify other objects without assuming who…

