What if you could notify hundreds of users instantly without writing extra code each time?
Why Observer pattern in LLD? - Purpose & Use Cases
Start learning this pattern below
Jump into concepts and practice - no test required
Imagine you have a newsletter system where you must inform hundreds of subscribers every time there is a new update. You try to call each subscriber manually one by one to tell them the news.
This manual way is slow and tiring. If you forget to call someone, they miss the update. Also, if you add or remove subscribers, you must change your code every time, which is error-prone and hard to maintain.
The Observer pattern lets you set up a system where subscribers automatically get notified when there is a new update. You just add or remove subscribers easily, and the system takes care of informing everyone without you calling each one manually.
for subscriber in subscribers: subscriber.notify(update)
subject.attach(observer) subject.notify_all(update)
This pattern enables automatic, flexible, and reliable communication between parts of a system without tight connections.
Think of social media: when someone posts a new photo, all their followers get notified instantly without the poster contacting each follower manually.
Manual notification is slow and error-prone.
Observer pattern automates updates to all interested parties.
It makes adding or removing observers easy and keeps code clean.
Practice
What is the main purpose of the Observer pattern in system design?
Solution
Step 1: Understand the Observer pattern role
The Observer pattern is designed to let one object notify others about changes automatically.Step 2: Match purpose with options
To allow objects to automatically update when another object changes correctly describes automatic updates between objects without tight coupling.Final Answer:
To allow objects to automatically update when another object changes -> Option BQuick Check:
Observer pattern = automatic updates [OK]
- Confusing Observer with data storage
- Thinking it creates class hierarchies
- Assuming it improves function speed
Which of the following is the correct way to register an observer in the Observer pattern?
subject = Subject()
observer = ConcreteObserver()
# What code registers the observer?Solution
Step 1: Recall common Observer pattern method names
Typically, the subject has a method namedattachoraddObserverto register observers.Step 2: Identify the most standard method
WhileaddObserveris used in some languages,attachis the classic and widely accepted method name.Final Answer:
subject.attach(observer) -> Option DQuick Check:
Register observer = subject.attach(observer) [OK]
- Calling register on observer instead of subject
- Using subscribe which is not standard here
- Confusing addObserver with observer methods
Given this code snippet, what will be printed?
class Subject:
def __init__(self):
self.observers = []
self.state = 0
def attach(self, observer):
self.observers.append(observer)
def set_state(self, state):
self.state = state
for obs in self.observers:
obs.update(state)
class Observer:
def __init__(self, name):
self.name = name
def update(self, state):
print(f"{self.name} received state {state}")
subject = Subject()
obs1 = Observer('A')
obs2 = Observer('B')
subject.attach(obs1)
subject.attach(obs2)
subject.set_state(5)Solution
Step 1: Follow the attach and set_state calls
Observers A and B are attached to the subject. Whenset_state(5)is called, it updates the state and callsupdate(5)on each observer.Step 2: Understand the update method output
Each observer prints its name and the new state, so both print lines with state 5.Final Answer:
A received state 5 B received state 5 -> Option AQuick Check:
Observers print updated state 5 [OK]
- Thinking observers print old state
- Assuming no output without explicit print
- Confusing method names causing errors
Identify the bug in this Observer pattern implementation:
class Subject:
def __init__(self):
self.observers = set()
def attach(self, observer):
self.observers.add(observer)
def notify(self):
for obs in self.observers:
obs.update()
class Observer:
def update(self, state):
print(f"State updated to {state}")
subject = Subject()
obs = Observer()
subject.attach(obs)
subject.notify()Solution
Step 1: Check method signatures and calls
The Observer'supdatemethod expects astateargument, butnotifycallsupdate()without any argument.Step 2: Identify mismatch causing error
This mismatch will cause a runtime error due to missing required positional argument.Final Answer:
Observer.update requires a state argument but notify calls without it -> Option AQuick Check:
Method argument mismatch causes error [OK]
- Ignoring missing argument errors
- Thinking sets are invalid for observers
- Misunderstanding attach method purpose
You are designing a stock price alert system using the Observer pattern. Multiple clients want updates only when the stock price changes by more than 5%. How should you modify the Observer pattern to handle this efficiently?
Solution
Step 1: Understand the requirement for selective updates
Clients want updates only if price changes exceed 5%, so notifying on every change is inefficient.Step 2: Implement threshold logic in Subject
Adding a check in the Subject to compare new price with old and notify observers only if change > 5% reduces unnecessary notifications.Final Answer:
Add a threshold check in the Subject before notifying observers -> Option CQuick Check:
Efficient notify = threshold check in Subject [OK]
- Not filtering updates causing overload
- Using polling which wastes resources
- Removing Observer pattern loses decoupling benefits
