()
| 54946 | return this.sampleSize > 0 ? this.lastSampleCount / this.sampleSize : 0; |
| 54947 | } |
| 54948 | getSampleAverageTime() { |
| 54949 | return this.sampleSize > 0 ? this.lastSampleTime / this.sampleSize : 0; |
| 54950 | } |
| 54951 | getSampleHz() { |
| 54952 | return this.lastSampleTime > 0 ? this.sampleSize / (this.lastSampleTime / 1000) : 0; |
| 54953 | } |
nothing calls this directly
no outgoing calls
no test coverage detected