ru.fix.aggregating.profiler.ProfilerReporter 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;
public interface ProfilerReporter extends AutoCloseable {
ProfilerReport buildReportAndReset();
/**
* @return empty report in case of nonexistent tag
*/
ProfilerReport buildReportAndReset(ReportFilter reportFilter);
void setLabelSticker(LabelSticker labelSticker);
}