Skip to content

Latest commit

 

History

History
199 lines (193 loc) · 7.82 KB

observable.md

File metadata and controls

199 lines (193 loc) · 7.82 KB

Observable object

The Observable object represents a push based collection.

The Observer and Observable interfaces provide a generalized mechanism for push-based notification, also known as the observer design pattern. The Observable object represents the object that sends notifications (the provider); the Observer object represents the class that receives them (the observer).

Observable Methods

Observable Instance Methods