handleUnlink
A method that’s called when the observed object is unlinked, may be overridden.
protected
protected handleUnlink(): void
Notes
- Override this method to perform any actions after the observed object is unlinked.
- The base implementation simply calls Observer.stop() immediately.
Related
- class ObserverThe base class for an observer that watches a particular ManagedObject.
- handleAttachedChange(origin) protectedA method that’s called when the observed object has been attached to another object, may be overridden.
- handleEvent(event) protectedA method that’s called when an event is emitted on the observed object, may be overridden.