
com.fnklabs.metrics.MeterImpl 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;
public class MeterImpl implements Meter {
private final com.codahale.metrics.Meter meter;
public MeterImpl(com.codahale.metrics.Meter meter) {this.meter = meter;}
@Override
public void inc() {
meter.mark();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy