A unique temp path for a CSV about to be COPY'd in.
(label: string)
| 541 | |
| 542 | /** A unique temp path for a CSV about to be COPY'd in. */ |
| 543 | private tmpCsvPath(label: string): string { |
| 544 | return `/${label}_${++this.copySeq}.csv`; |
| 545 | } |
| 546 | |
| 547 | /** Monotonic counter bumped by clearGraph(). Each queued task captures the |
| 548 | * current value at enqueue; when it runs, a mismatch means clearGraph fired |
no outgoing calls
no test coverage detected