Holi Sale. Get upto 40% OFF on Job-oriented Training! Offer Ending in
D
H
M
S
Get Now
Observer Design Pattern

Observer Design Pattern

23 Aug 2022
Intermediate
47.8K Views
2 min read
Learn via Video Course & by Doing Hands-on Labs

⭐ .NET Design Patterns Course: Design Patterns in C# Online Training

Observer Design Pattern falls under Behavioral Pattern of Gang of Four (GOF) Design Patterns in .Net. The command pattern is commonly used in the menu systems of many applications such as Editor, IDE, etc. In this article, I would like to share what is observer pattern and how is it work?

What is Observer Design Pattern?

This pattern is used when there is one too many relationships between objects such as if one object is modified, its dependent objects are to be notified automatically.

Observer Design Pattern is allowed a single object, known as the subject, to publish changes to its state and other observer objects that depend upon the subject are automatically notified of any changes to the subject's state.

Observer Design Pattern - UML Diagram & Implementation

The UML class diagram for the implementation of the Observer Design Pattern is given below:

Observer Design Pattern C#

The classes, interfaces, and objects in the above UML class diagram are as follows:

  1. Subject

    This is a class that contains a private collection of the observers that are subscribed to a subject for notification by using Notify operation.

  2. ConcreteSubject

    This is a class that maintains its own state. When a change is made to its state, the object calls the base class's Notify operation to indicate this to all of its observers.

  3. Observer

    This is an interface which defines an operation Update, which is to be called when the subject's state changes.

  4. ConcreteObserver

    This is a class that implements the Observer interface and examines the subject to determine which information has changed.

C# - Implementation Code

public abstract class Subject
{
 private ArrayList observers = new ArrayList();

 public void Attach(IObserver o)
 {
 observers.Add(o);
 }

 public void Detach(IObserver o)
 {
 observers.Remove(o);
 }

 public void Notify()
 {
 foreach (IObserver o in observers)
 {
 o.Update();
 }
 }
}

public class ConcreteSubject : Subject
{
 private string state;

 public string GetState()
 {
 return state;
 }

 public void SetState(string newState)
 {
 state = newState;
 Notify();
 }
}

public interface IObserver
{
 void Update();
}

public class ConcreteObserver : IObserver
{
 private ConcreteSubject subject;

 public ConcreteObserver(ConcreteSubject sub)
 {
 subject = sub;
 }

 public void Update()
 {
 string subjectState = subject.GetState();
 Console.WriteLine(subjectState);
 }
} 

Real Life Example:

Real Life Example of Observer Design Pattern C#

When to use it?

  1. Changes in the state of an object need to be notified to a set of dependent objects, not all of them.

  2. Notification capability is required.

  3. The object sending the notification does not need to know about the receivers objects.

Read More Articles Related to Design patterns
What do you think?

I hope you will enjoy the Observer Design Pattern while designing your software. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

Share Article
About Author
Shailendra Chauhan (Microsoft MVP, Founder & CEO at Scholarhat by DotNetTricks)

Shailendra Chauhan is the Founder and CEO at ScholarHat by DotNetTricks which is a brand when it comes to e-Learning. He provides training and consultation over an array of technologies like Cloud, .NET, Angular, React, Node, Microservices, Containers and Mobile Apps development. He has been awarded Microsoft MVP 8th time in a row (2016-2023). He has changed many lives with his writings and unique training programs. He has a number of most sought-after books to his name which has helped job aspirants in cracking tough interviews with ease.
Accept cookies & close this