The observer pattern is a software design pattern in which an object, called the subject (Observable), maintains a list of its dependents, called observers, and notifies them automatically of any state changes, usually by calling one of their methods. Here is an implementation in C#
We have an example of a weather station that has a list of displays and notify them when data of the weather station change.