* Start tracking a multi-batch analysis. * During multi-batch analysis, workflow filtering is deferred until all batches complete. * This prevents nodes from being filtered out before their cross-batch connections are established.
(totalBatches: number)
| 247 | * This prevents nodes from being filtered out before their cross-batch connections are established. |
| 248 | */ |
| 249 | startMultiBatchAnalysis(totalBatches: number): void { |
| 250 | this.analysisInProgress = true; |
| 251 | this.pendingBatchCount = totalBatches; |
| 252 | } |
| 253 | |
| 254 | /** |
| 255 | * Mark a batch as completed. |
no outgoing calls
no test coverage detected