ru.tinkoff.kora.resilient.retry.NoopRetryMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resilient-kora Show documentation
Show all versions of resilient-kora Show documentation
Kora resilient-kora module
The newest version!
package ru.tinkoff.kora.resilient.retry;
import jakarta.annotation.Nonnull;
final class NoopRetryMetrics implements RetryMetrics {
@Override
public void recordAttempt(@Nonnull String name, long delayInNanos) {
// do nothing
}
@Override
public void recordExhaustedAttempts(@Nonnull String name, int totalAttempts) {
// do nothing
}
}