com.vlkan.hrrs.replayer.metric.MetricNullReporter Maven / Gradle / Ivy
package com.vlkan.hrrs.replayer.metric;
public class MetricNullReporter implements MetricReporter {
private static final MetricNullReporter INSTANCE = new MetricNullReporter();
private MetricNullReporter() {
// Do nothing.
}
public static MetricNullReporter getInstance() {
return INSTANCE;
}
@Override
public void start() {
// Do nothing.
}
@Override
public void close() {
// Do nothing.
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy