Interface CamundaJobExecutorConfig.ThreadPoolConfig
- Enclosing interface:
- CamundaJobExecutorConfig
public static interface CamundaJobExecutorConfig.ThreadPoolConfig
-
Method Summary
Modifier and TypeMethodDescriptionint
Sets the maximum number of threads that can be present in the Quarkus-managed thread pool for the Camunda JobExecutor.int
Sets 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 Camunda 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.
-