public abstract class StubSettings<SettingsT>
A base settings class to configure a client stub class.
This base class includes settings that are applicable to all services, which includes things
like settings for creating an executor, credentials, transport-specific settings, and identifiers
for http headers.
If no ExecutorProvider is set, then InstantiatingExecutorProvider will be used, which creates
a default executor.
Type Parameter |
---|
Name | Description |
SettingsT | |
Constructors
StubSettings(StubSettings.Builder builder)
protected StubSettings(StubSettings.Builder builder)
Constructs an instance of StubSettings.
Parameter |
---|
Name | Description |
builder | Builder
|
Methods
getBackgroundExecutorProvider()
public final ExecutorProvider getBackgroundExecutorProvider()
getClock()
public final ApiClock getClock()
getCredentialsProvider()
public final CredentialsProvider getCredentialsProvider()
getEndpoint()
public final String getEndpoint()
getExecutorProvider() (deprecated)
public final ExecutorProvider getExecutorProvider()
getGdchApiAudience()
public final String getGdchApiAudience()
Gets the GDCH API audience to be used with com.google.auth.oauth2.GdchCredentials
public final HeaderProvider getHeaderProvider()
protected final HeaderProvider getInternalHeaderProvider()
getMtlsEndpoint()
public final String getMtlsEndpoint()
getQuotaProjectId()
public final String getQuotaProjectId()
getStreamWatchdogCheckInterval()
public final Duration getStreamWatchdogCheckInterval()
Returns |
---|
Type | Description |
org.threeten.bp.Duration | |
getStreamWatchdogProvider()
public final WatchdogProvider getStreamWatchdogProvider()
getTracerFactory()
public ApiTracerFactory getTracerFactory()
Gets the configured ApiTracerFactory that will be used to generate traces for
operations.
getTransportChannelProvider()
public final TransportChannelProvider getTransportChannelProvider()
toBuilder()
public abstract StubSettings.Builder toBuilder()
toString()
Overrides