Package io.quarkus.amazon.common.runtime
Interface SdkConfig.Advanced
- Enclosing interface:
- SdkConfig
public static interface SdkConfig.Advanced
-
Method Summary
Modifier and TypeMethodDescriptionbooleanWhether the Quarkus thread pool should be used for scheduling tasks such as async retry attempts and timeout task.
-
Method Details
-
useQuarkusScheduledExecutorService
@WithDefault("true") boolean useQuarkusScheduledExecutorService()Whether the Quarkus thread pool should be used for scheduling tasks such as async retry attempts and timeout task.When disabled, the default sdk behavior is to create a dedicated thread pool for each client, resulting in competition for CPU resources among these thread pools.
-