ru.tinkoff.kora.resilient.retry.RetryMetrics Maven / Gradle / Ivy
package ru.tinkoff.kora.resilient.retry;
import jakarta.annotation.Nonnull;
public interface RetryMetrics {
void recordAttempt(@Nonnull String name, long delayInNanos);
void recordExhaustedAttempts(@Nonnull String name, int totalAttempts);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy