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

com.fnklabs.draenei.MetricsFactory Maven / Gradle / Ivy

There is a newer version: 0.8.3
Show newest version
package com.fnklabs.draenei;


import com.codahale.metrics.Counter;
import com.codahale.metrics.Histogram;
import com.codahale.metrics.Meter;
import com.codahale.metrics.Timer;

public interface MetricsFactory {
    Timer getTimer(Type type);

    Counter getCounter(Type type);

    Meter getMeter(Type type);

    Histogram getHistogram(Type type);

    interface Type {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy