
com.fnklabs.metrics.TimerImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metrics-dropwizard Show documentation
Show all versions of metrics-dropwizard Show documentation
utils for working with metrics
The newest version!
package com.fnklabs.metrics;
class TimerImpl implements Timer {
private final com.codahale.metrics.Timer.Context timer;
TimerImpl(com.codahale.metrics.Timer.Context timer) {
this.timer = timer;
}
@Override
public void stop() {
timer.stop();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy