()
| 374 | } |
| 375 | |
| 376 | public destroy(): void { |
| 377 | if (this.disposed) { |
| 378 | return; |
| 379 | } |
| 380 | |
| 381 | this.context.eventBatcher.flushNow(); |
| 382 | this.disposed = true; |
| 383 | this.initializationRequests.clear(); |
| 384 | this.latestInitializationRequestKey = null; |
| 385 | this.cleanupEventListeners(); |
| 386 | this.context.eventBatcher.destroy(); |
| 387 | } |
| 388 | |
| 389 | private processBatchedEvents(events: Array<{ key: string; payload: any }>): void { |
| 390 | if (this.disposed) { |
no test coverage detected