The Observer Pattern belongs to the category of behavioral design patterns. It establishes a relationship between a subject (the object being observed) and multiple observers (the objects that are watching the subject). When the subject changes its state, all its observers are automatically notified, allowing them to update their states accordingly.
This pattern is ideal for event-driven systems, where an event in one part of an application might need to trigger actions in other parts. Think of it as a subscription model: observers subscribe to a subject to stay informed about changes.
Imagine a social media application. When a user makes a post (the subject), all their followers (the observers) are notified in real-time. Here, the user’s followers don’t need to check for updates manually; instead, they receive updates automatically whenever the user posts something.
Here’s how to implement the Observer Pattern using a practical coding example in Python.
from abc import ABC, abstractmethod class Observer(ABC): @abstractmethod def update(self, message: str): pass class Subject(ABC): @abstractmethod def attach(self, observer: Observer): pass @abstractmethod def detach(self, observer: Observer): pass @abstractmethod def notify(self): pass
class ConcreteSubject(Subject): def __init__(self): self._observers = [] self._state = None def attach(self, observer: Observer): self._observers.append(observer) def detach(self, observer: Observer): self._observers.remove(observer) def notify(self): for observer in self._observers: observer.update(self._state) def set_state(self, state): self._state = state self.notify()
class ConcreteObserver(Observer): def __init__(self, name: str): self.name = name def update(self, message: str): print(f"{self.name} received update: {message}")
Now let’s see how these components come together in action:
if __name__ == "__main__": subject = ConcreteSubject() observer1 = ConcreteObserver("Observer 1") observer2 = ConcreteObserver("Observer 2") subject.attach(observer1) subject.attach(observer2) subject.set_state("State 1") subject.set_state("State 2") subject.detach(observer1) subject.set_state("State 3")
When you run the above code, you will see the following output:
Observer 1 received update: State 1
Observer 2 received update: State 1
Observer 1 received update: State 2
Observer 2 received update: State 2
Observer 2 received update: State 3
observer1
, only observer2
receives notifications for the subsequent state changes.The Observer Pattern not only enhances flexibility in your code but also allows for more organized and efficient event handling. By understanding its structure and benefits, you can build robust applications that respond dynamically to user interactions and state changes.
06/09/2024 | Design Patterns
12/10/2024 | Design Patterns
09/10/2024 | Design Patterns
10/02/2025 | Design Patterns
15/01/2025 | Design Patterns
15/01/2025 | Design Patterns
12/10/2024 | Design Patterns
03/09/2024 | Design Patterns
10/02/2025 | Design Patterns
10/02/2025 | Design Patterns
12/10/2024 | Design Patterns
12/10/2024 | Design Patterns