()
| 148 | subscribe = this.statuses.subscribeAny; |
| 149 | |
| 150 | private queueImmediateUpdate(): void { |
| 151 | if (this.immediateUpdateQueued || !this.isActive || !this.client) { |
| 152 | return; |
| 153 | } |
| 154 | |
| 155 | this.immediateUpdateQueued = true; |
| 156 | queueMicrotask(() => { |
| 157 | this.immediateUpdateQueued = false; |
| 158 | this.refreshController.requestImmediate(); |
| 159 | }); |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * Subscribe to git status changes for a specific workspace. |
no test coverage detected