ru.tinkoff.kora.resilient.timeout.TimeouterManager 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;
import javax.annotation.Nonnull;
/**
* Manages state of all {@link Timeouter} in system
*/
public interface TimeouterManager {
@Nonnull
Timeouter get(@Nonnull String name);
}