* Increase parallelism. * @returns {void}
()
| 271 | * @returns {void} |
| 272 | */ |
| 273 | increaseParallelism() { |
| 274 | const root = this._root; |
| 275 | root._parallelism++; |
| 276 | /* istanbul ignore next */ |
| 277 | if (root._willEnsureProcessing === false && root._needProcessing) { |
| 278 | root._willEnsureProcessing = true; |
| 279 | setImmediate(root._ensureProcessing); |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | /** |
| 284 | * Decrease parallelism. |
no outgoing calls
no test coverage detected