ru.fix.aggregating.profiler.engine.CallAggregateMutator 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.engine;
import ru.fix.aggregating.profiler.Identity;
import java.util.function.Consumer;
@FunctionalInterface
public interface CallAggregateMutator {
void updateAggregate(Identity profiledCallName, Consumer updateAction);
}