ru.tinkoff.kora.resilient.timeout.simple.NoopTimeoutMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resilient-timeout Show documentation
Show all versions of resilient-timeout Show documentation
Kora resilient-timeout module
package ru.tinkoff.kora.resilient.timeout.simple;
import ru.tinkoff.kora.resilient.timeout.telemetry.TimeoutMetrics;
import javax.annotation.Nonnull;
final class NoopTimeoutMetrics implements TimeoutMetrics {
@Override
public void recordTimeout(@Nonnull String name, long timeoutInNanos) {
// do nothing
}
}