()
| 110 | |
| 111 | // Abort all operations |
| 112 | abort(): void { |
| 113 | this.abortController.abort(); |
| 114 | this.clear(); |
| 115 | |
| 116 | // Create a new AbortController for future operations |
| 117 | this.abortController = new AbortController(); |
| 118 | } |
| 119 | |
| 120 | // Clear all queues |
| 121 | clear(): void { |
no test coverage detected