ru.tinkoff.kora.scheduling.common.telemetry.SchedulingTracer 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 ru.tinkoff.kora.common.Context;
import jakarta.annotation.Nullable;
public interface SchedulingTracer {
interface SchedulingSpan {
void close(@Nullable Throwable exception);
}
SchedulingSpan createSpan(Context ctx);
}