io.split.telemetry.storage.TelemetryEvaluationConsumer Maven / Gradle / Ivy
The newest version!
package io.split.telemetry.storage;
import io.split.telemetry.domain.MethodExceptions;
import io.split.telemetry.domain.MethodLatencies;
public interface TelemetryEvaluationConsumer {
MethodExceptions popExceptions() throws Exception;
MethodLatencies popLatencies() throws Exception;
}