ru.tinkoff.kora.resilient.timeout.NoopTimeoutMetrics 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.timeout;
import jakarta.annotation.Nonnull;
final class NoopTimeoutMetrics implements TimeoutMetrics {
@Override
public void recordTimeout(@Nonnull String name, long timeoutInNanos) {
// do nothing
}
}