()
| 89 | return this.native.getLongMetric(metricName); |
| 90 | } |
| 91 | getMetrics(): { [key: string]: number } { |
| 92 | return deserialize(this.native.getAttributes()); |
| 93 | } |
| 94 | incrementMetric(metricName: string, incrementBy: number): void { |
| 95 | this.native.incrementMetric(metricName, incrementBy); |
| 96 | } |
nothing calls this directly
no test coverage detected