ru.tinkoff.kora.scheduling.common.telemetry.SchedulingLogger 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
package ru.tinkoff.kora.scheduling.common.telemetry;
import jakarta.annotation.Nullable;
public interface SchedulingLogger {
void logJobStart();
void logJobFinish(long duration, @Nullable Throwable e);
}