(err, count)
| 2576 | let total = this._connections; |
| 2577 | |
| 2578 | function oncount(err, count) { |
| 2579 | if (err) { |
| 2580 | left = -1; |
| 2581 | return end(err); |
| 2582 | } |
| 2583 | |
| 2584 | total += count; |
| 2585 | if (--left === 0) return end(null, total); |
| 2586 | } |
| 2587 | |
| 2588 | for (let n = 0; n < this._workers.length; n++) { |
| 2589 | this._workers[n].getConnections(oncount); |
nothing calls this directly
no test coverage detected
searching dependent graphs…