Sets the ExecutorProvider to use for getting the executor to use for running asynchronous API
call logic (such as retries and long-running operations), and also to pass to the transport
settings if an executor is needed for the transport and it doesn't have its own executor
provider.
Sets the HeaderProvider for getting custom static headers for http requests. The header
provider will be called during client construction only once. The headers returned by the
provider will be cached and supplied as is for each request issued by the constructed client.
Some reserved headers can be overridden (e.g. Content-Type) or merged with the default value
(e.g. User-Agent) by the underlying transport layer.
Sets the HeaderProvider for getting internal (library-defined) static headers for http
requests. The header provider will be called during client construction only once. The
headers returned by the provider will be cached and supplied as is for each request issued by
the constructed client. Some reserved headers can be overridden (e.g. Content-Type) or merged
with the default value (e.g. User-Agent) by the underlying transport layer.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-01 UTC."],[[["The document provides a comprehensive list of available versions for the `StubSettings.Builder` class, ranging from the latest version 2.63.1 down to version 2.7.1."],["`StubSettings.Builder` is an abstract class in the `com.google.api.gax.rpc` package that inherits from `java.lang.Object` and is designed to be used for constructing `StubSettings` objects."],["This builder class offers various methods for configuring settings such as background executor, clock, credentials, endpoint, headers, and watchdog providers, which are essential for customizing API client behavior."],["The `build()` method is used to create an instance of `StubSettings`, although it might throw an `IOException` if an error occurs during the building process."],["Deprecated methods, such as `getExecutorProvider()` and `setExecutorProvider()`, are noted and users are encouraged to use `getBackgroundExecutorProvider()` and `setBackgroundExecutorProvider()` in place of them for running scheduled API call logic."]]],[]]