()
| 377 | } |
| 378 | |
| 379 | onBackendUpdate() { |
| 380 | const waveObj = this.getter(this.waveObjectAtom); |
| 381 | const pendingActions = waveObj?.pendingbackendactions; |
| 382 | if (pendingActions?.length) { |
| 383 | fireAndForget(() => this.processPendingBackendActions()); |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | private async processPendingBackendActions() { |
| 388 | const waveObj = this.getter(this.waveObjectAtom); |
no test coverage detected