* Attach a callback that will be executed whenever the component is invalidated * * @param callback * @public
(callback: (param: InvalidationInfo) => void)
| 646 | * @public |
| 647 | */ |
| 648 | attachInvalidate(callback: (param: InvalidationInfo) => void): void { |
| 649 | this._invalidationEventProvider.attachEvent("invalidate", callback); |
| 650 | } |
| 651 | |
| 652 | /** |
| 653 | * Detach the callback that is executed whenever the component is invalidated |
nothing calls this directly
no test coverage detected
searching dependent graphs…