ru.tinkoff.kora.scheduling.jdk.ScheduledExecutorServiceConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scheduling-jdk Show documentation
Show all versions of scheduling-jdk Show documentation
Kora scheduling-jdk module
package ru.tinkoff.kora.scheduling.jdk;
import ru.tinkoff.kora.config.common.annotation.ConfigValueExtractor;
@ConfigValueExtractor
public interface ScheduledExecutorServiceConfig {
default int threads() {
return 20;
}
}