Click here to Skip to main content
15,867,488 members
Articles / Programming Languages / C#

The Observer Design Pattern

Rate me:
Please Sign up or sign in to vote.
4.76/5 (17 votes)
18 Dec 2009CPOL2 min read 66.2K   39   12
A quick tour of the Observer Design Pattern.

Introduction

I will attempt to explain what is one of the most widely used Design Patterns: Observer Pattern.

Problem domain: Implementing the Publisher/Subscriber scenario. We need a mechanism which allows us to notify subscriber objects whenever the publisher object changes state.

There is one publisher or subject class and one or more subscriber or observer classes.

Illustration

Image 1

Explanation

In order for observers to receive a notification, they must implement some kind of update method which the subject can call whenever it changes state. The observers must have the freedom to register and un-register from subscription to the subject at any point in time.

The subject contains the stuff. So, whenever the stuff changes, observers need to be notified.

Here, the Observer Pattern comes to the rescue.

Implementation

We need to create two Interfaces: Subject and Observer. The interface for the subject contains the register, unregister, and notify method signatures, as follows:

C#
public interface Subject
{
  public void register(Observer o);
  public void unregister(Observer o);
  public void notify();
}

The interface for the observer contains an update method signature:

C#
public interface Observer
{
    public void update(int value);
}

Now, let us assume that we are building a sample stock market gadget app. Here, the subject is the one which has the 'stuff', i.e., the stock market quotes. The observers are different classes which display the latest stock quotes to the user.

Let us have classes representing the subject/observer relationship: the StockMarket class being the subject, and we have three different observer classes: GoogleStockGadget, YahooStockGadget, and MSNStockGadget.

The StockMarket class must implement the Subject interface:

C#
public class StockMarket : Subject
{
  // A Collection to keep track of all Registered Observers
  ArrayList observers = new ArrayList();

  // Stores latest stock quote (example is purposely simplistic)
  int newValue = 0;
  
  public void setValue(int v)
  {
    newValue = v;
  }
  
  public void register(Observer o)
  {
    observers.add(o);
  }

  public void unregister(Observer o)
  {
    int i = observers.indexOf(o);
    observers.remove(i);
  }

  public void notify()
  {
    for (int i=0;i < observers.size();i++)
    {
      Observer ob = (Observer)observers.get(i);
      ob.update(newValue);
    }
  }
}

The observers: GoogleStockGadget, YahooStockGadget, and MSNStockGadget, must implement the Observer interface.

Note that the observer classes must maintain a reference variable of type Subject.

C#
public class GoogleStockGadet : Observer
{
   int latestValue = 0;
   Subject stockMarket; // Subject reference variable

   // Note how subject is passed in the constructor of Observer
   public GoogleStockGadet(Subject subject)
   {
    stockMarket = subject;
    stockMarket.register(this); // Registering itself to the Subject
   }

   public void update(int value)
   {
    latestValue = value;
    display();
   }

   public void display()
   {
     System.out.println("Latest Quote=" + latestValue);
   }

   public void unsubscribe()
   {
     stockMarket.unregister(this);
   }
}

Similarly, YahooStockGadget and MSNStockGadget implement the observer interface.

Now, let's see how we make it all work in the main program.

C#
public class MainProgram
{
  public static void Main(string[] args)
  {
    //Initialize Subject
    StockMarket stockMarket =  new StockMarket();
    int latestQuote = 0;

    // Initialize Gadgets..Note the subject being passed in Constructor
    GoogleStockGadget googleGadget = new GoogleStockGadget(stockMarket);
    MSNStockGadget msnGadget =  new MSNStockGadget(stockMarket);
    YahooStockGadget yahooGadget = new YahooStockGadget(stockMarket);

    // Code for Getting latest stock 
    // ....
    // ....
    stockMarket.setValue(latestQuote);

    // Updating all Registered Observers
    stockMarket.notify();

    //GoogleGadget decides to unregister/unsubscirbe
    googleGadget.unsubscribe();

  }
}

With that, I end my article. Remember, the Observer Design Pattern solves the common problem of notifying several objects (i.e., Observers) about changes in the state of one principle object (or the Subject).

This, being my first article, might not be perfect, but hopefully, it has helped you in better understanding the concepts of the Observer Design Pattern.

Happy coding!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
Just a budding .net developer.

Comments and Discussions

 
Questionthanks Pin
cynix00821-Dec-16 5:28
cynix00821-Dec-16 5:28 
PraiseNice Pin
hebsiboy26-Oct-16 5:16
hebsiboy26-Oct-16 5:16 
SuggestionMy 5 & Suggestion Pin
Kishor Deshpande4-Feb-13 22:45
professionalKishor Deshpande4-Feb-13 22:45 
GeneralMy vote of 4 Pin
Shashank Bisen15-Jul-12 20:09
Shashank Bisen15-Jul-12 20:09 
Generalsome enchancements Pin
Alexander_Ukhov20-Dec-09 23:45
Alexander_Ukhov20-Dec-09 23:45 
GeneralIf you like this Article - Check out the Reactive Extensions Pin
Rune Baess18-Dec-09 12:51
Rune Baess18-Dec-09 12:51 
GeneralRe: If you like this Article - Check out the Reactive Extensions Pin
Steven Relis20-Dec-09 1:38
Steven Relis20-Dec-09 1:38 
GeneralUnregistering dangling references Pin
supercat918-Dec-09 9:18
supercat918-Dec-09 9:18 
AnswerRe: Unregistering dangling references Pin
Anides18-Dec-09 9:43
Anides18-Dec-09 9:43 
GeneralSome errors Pin
Bob Geiger18-Dec-09 3:28
Bob Geiger18-Dec-09 3:28 
GeneralRe: Some errors Pin
Anides18-Dec-09 4:19
Anides18-Dec-09 4:19 
GeneralRe: Some errors Pin
Andre Sanches (alvs)18-Dec-09 6:41
Andre Sanches (alvs)18-Dec-09 6:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.