- ScheduledThreadPoolSupplier (common.configurable) Configuration
Type: io.helidon.common.configurable.ScheduledThreadPoolSupplier
Configuration options
Optional configuration options
| key | type | default value | description |
|---|---|---|---|
core-pool-size | int | 16 | Core pool size of the thread pool executor. Defaults to @return corePoolSize see java.util.concurrent.ThreadPoolExecutor#getCorePoolSize() |
is-daemon | boolean | true | Is daemon of the thread pool executor. Defaults to @return whether the threads are daemon threads |
prestart | boolean | false | Whether to prestart core threads in this thread pool executor. Defaults to @return whether to prestart the threads |
thread-name-prefix | string | helidon- | Name prefix for threads in this thread pool executor. Defaults to @return prefix of a thread name |
virtual-threads | boolean | When configured to If enabled, all other configuration options of this executor service are ignored! @return whether to use virtual threads or not, defaults to `false` |