* Ends measuring and reports the data * since the begin call. * @param restart: Whether to restart right after this.
(restart: boolean)
| 43 | * @param restart: Whether to restart right after this. |
| 44 | */ |
| 45 | override endMeasure(restart: boolean): Promise<{[key: string]: any}> { |
| 46 | return Promise.all(this._metrics.map((metric) => metric.endMeasure(restart))).then((values) => |
| 47 | mergeStringMaps(<any>values), |
| 48 | ); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Describes the metrics provided by this metric implementation. |
nothing calls this directly
no test coverage detected