observe
Starts observing the specified managed object.
observe(observed: T): this
Notes
- If another object was already being observed, it will no longer be observed, as if stop() was called first.
- This method should be overridden to start observing properties of the observed object; refer to the examples for Observer.
Related
- class ObserverThe base class for an observer that watches a particular ManagedObject.
- stop()Stops observing events and properties.