All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vlkan.hrrs.replayer.metric.MetricNullReporter Maven / Gradle / Ivy

There is a newer version: 0.7.1
Show newest version
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