Click here to Skip to main content
Click here to Skip to main content

The Observer Design Pattern

By , 18 Dec 2009
 

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

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:

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:

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:

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.

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.

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)

About the Author

Anides
Software Developer
United States United States
Member
Just a budding .net developer.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
SuggestionMy 5 & SuggestionmemberKishor Deshpande4 Feb '13 - 22:45 
GeneralMy vote of 4memberShashank Bisen15 Jul '12 - 20:09 
Generalsome enchancementsmemberAlexander_Ukhov20 Dec '09 - 23:45 
GeneralIf you like this Article - Check out the Reactive ExtensionsmemberRune Baess18 Dec '09 - 12:51 
GeneralRe: If you like this Article - Check out the Reactive ExtensionsmemberSteven Relis20 Dec '09 - 1:38 
GeneralUnregistering dangling referencesmembersupercat918 Dec '09 - 9:18 
AnswerRe: Unregistering dangling referencesmemberAnides18 Dec '09 - 9:43 
GeneralSome errorsmemberBob Geiger18 Dec '09 - 3:28 
GeneralRe: Some errorsmemberAnides18 Dec '09 - 4:19 
GeneralRe: Some errorsmemberAndre Luiz V Sanches18 Dec '09 - 6:41 
Totally know what you mean - coming from the java world I also do that often
 
---------
Andre Sanches
 
"UNIX is friendly, it's just picky about its friends"

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 18 Dec 2009
Article Copyright 2009 by Anides
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid