ru.tinkoff.kora.scheduling.common.telemetry.SchedulingMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scheduling-common Show documentation
Show all versions of scheduling-common Show documentation
Kora scheduling-common module
The newest version!
package ru.tinkoff.kora.scheduling.common.telemetry;
import jakarta.annotation.Nullable;
public interface SchedulingMetrics {
void record(long processingTimeNanos, @Nullable Throwable e);
}