Stops the Actor and unsubscribe all listeners.
()
| 644 | |
| 645 | /** Stops the Actor and unsubscribe all listeners. */ |
| 646 | public stop(): this { |
| 647 | if (this._parent) { |
| 648 | throw new Error('A non-root actor cannot be stopped directly.'); |
| 649 | } |
| 650 | return this._stop(); |
| 651 | } |
| 652 | private _complete(): void { |
| 653 | for (const observer of this.observers) { |
| 654 | try { |