Skip to content
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.

Latest commit

 

History

History
200 lines (194 loc) · 7.91 KB

observable.md

File metadata and controls

200 lines (194 loc) · 7.91 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