(err, data, output)
| 360 | } |
| 361 | |
| 362 | _callCallback(err, data, output) { |
| 363 | debug(`enter _callCallback(), state: ${String(this.state)}, uuid: ${this.uuid}`); |
| 364 | if (err) err.data = this._errorData(); |
| 365 | const c = this.callback; |
| 366 | this.callback = null; |
| 367 | c(err, data, output); |
| 368 | debug(`exit _callCallback(), state: ${String(this.state)}, uuid: ${this.uuid}`); |
| 369 | } |
| 370 | |
| 371 | _callIsFinished() { |
| 372 | debug(`enter _callIsFinished(), state: ${String(this.state)}, uuid: ${this.uuid}`); |
no test coverage detected