(id)
| 33 | } |
| 34 | |
| 35 | endJob(id) { |
| 36 | debug(`LoadEstimator.endJob(): jobType = ${this.jobType}, id = ${id}`); |
| 37 | this._addIntegratedLoad(); |
| 38 | if (_.has(this.currentJobs, id)) { |
| 39 | delete this.currentJobs[id]; |
| 40 | } else { |
| 41 | logger.error(`load.endJob(): ${this.jobType} no such id: ${id}`); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | close() { |
| 46 | debug(`LoadEstimator.close(): jobType = ${this.jobType}`); |
no test coverage detected