(err, result)
| 33 | var start = Date.now(); |
| 34 | |
| 35 | function done (err, result) { |
| 36 | total += result; |
| 37 | |
| 38 | // have all the batches finished executing? |
| 39 | if (++ended === batches) { |
| 40 | printResult('Async', total / batches, Date.now() - start); |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | // for each batch of work, request an async Estimate() for |
| 45 | // a portion of the total number of calculations |
nothing calls this directly
no test coverage detected