ru.fix.aggregating.profiler.IndicationProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aggregating-profiler Show documentation
Show all versions of aggregating-profiler Show documentation
https://github.com/ru-fix/aggregating-profiler
package ru.fix.aggregating.profiler;
/**
* Provides value of indicator
*/
@FunctionalInterface
public interface IndicationProvider {
//TODO: change indicator value to double
Long get() throws Exception;
}