com.fnklabs.draenei.MetricsFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fnklabs-draenei Show documentation
Show all versions of fnklabs-draenei Show documentation
ORM for Cassandra but with distributed cache and analytics utils from package
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