Interface SdkConfig.Advanced

Enclosing interface:
SdkConfig

public static interface SdkConfig.Advanced
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Whether 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.