(nodeId: string)
| 204 | } |
| 205 | |
| 206 | private addToQueue(nodeId: string): void { |
| 207 | const node = this.dag.nodes.get(nodeId) |
| 208 | if (node?.metadata?.isResumeTrigger && !this.allowResumeTriggers) { |
| 209 | return |
| 210 | } |
| 211 | |
| 212 | if (!this.readyQueue.includes(nodeId)) { |
| 213 | this.readyQueue.push(nodeId) |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | private addMultipleToQueue(nodeIds: string[]): void { |
| 218 | for (const nodeId of nodeIds) { |
no test coverage detected