()
| 629 | } |
| 630 | |
| 631 | private _stop(): this { |
| 632 | if (this._processingStatus === ProcessingStatus.Stopped) { |
| 633 | return this; |
| 634 | } |
| 635 | this.mailbox.clear(); |
| 636 | if (this._processingStatus === ProcessingStatus.NotStarted) { |
| 637 | this._processingStatus = ProcessingStatus.Stopped; |
| 638 | return this; |
| 639 | } |
| 640 | this.mailbox.enqueue({ type: XSTATE_STOP } as any); |
| 641 | |
| 642 | return this; |
| 643 | } |
| 644 | |
| 645 | /** Stops the Actor and unsubscribe all listeners. */ |
| 646 | public stop(): this { |
no test coverage detected