Interface OperatonJobExecutorConfig.ThreadPoolConfig
- Enclosing interface:
OperatonJobExecutorConfig
public static interface OperatonJobExecutorConfig.ThreadPoolConfig
-
Method Summary
Modifier and TypeMethodDescriptionintSets the maximum number of threads that can be present in the Quarkus-managed thread pool for the Operaton JobExecutor.intSets the size of the Quarkus-managed JobExecutor queue.
-
Method Details
-
maxPoolSize
@WithDefault("10") int maxPoolSize()Sets the maximum number of threads that can be present in the Quarkus-managed thread pool for the Operaton JobExecutor. The default value is 10. -
queueSize
@WithDefault("3") int queueSize()Sets the size of the Quarkus-managed JobExecutor queue. The default value is 3.
-