All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.tinkoff.kora.scheduling.common.telemetry.SchedulingTelemetry Maven / Gradle / Ivy

package ru.tinkoff.kora.scheduling.common.telemetry;

import ru.tinkoff.kora.common.Context;

import jakarta.annotation.Nullable;

public interface SchedulingTelemetry {
    interface SchedulingTelemetryContext {
        void close(@Nullable Throwable exception);
    }

    Class jobClass();

    String jobMethod();

    SchedulingTelemetryContext get(Context ctx);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy