Metro: Understanding Observables
- by Stephen.Walther
The goal of this blog entry is to describe how the Observer Pattern is implemented in the WinJS library. You learn how to create observable objects which trigger notifications automatically when their properties are changed.
Observables enable you to keep your user interface and your application data in sync. For example, by taking advantage of…