Class WebPubSubServiceClientBuilder
- All Implemented Interfaces:
com.azure.core.client.traits.AzureKeyCredentialTrait<WebPubSubServiceClientBuilder>,com.azure.core.client.traits.ConfigurationTrait<WebPubSubServiceClientBuilder>,com.azure.core.client.traits.ConnectionStringTrait<WebPubSubServiceClientBuilder>,com.azure.core.client.traits.EndpointTrait<WebPubSubServiceClientBuilder>,com.azure.core.client.traits.HttpTrait<WebPubSubServiceClientBuilder>,com.azure.core.client.traits.TokenCredentialTrait<WebPubSubServiceClientBuilder>
sync and async Azure Web Pub Sub clients, using the
buildClient and buildAsyncClient methods respectively.
To fully configure a Azure Web Pub Sub client, it is necessary to supply a
connection string retrieved from the Azure Portal, or else a combination of
credential and endpoint.
An Azure Web Pub Sub client is required to connect to a specific hub. An exception will be
thrown when the build methods are called if the hub value is null or an empty String.
Code Samples
WebPubSubServiceAsyncClient client = new WebPubSubServiceClientBuilder()
.connectionString("<Insert connection string from Azure Portal>")
.buildAsyncClient();
This demonstrates using the connection string provided by the Azure Portal. Another approach is to use the combination of credential and endpoint details, as shown below:
WebPubSubServiceAsyncClient client = new WebPubSubServiceClientBuilder()
.credential(new AzureKeyCredential("<Insert key from Azure Portal>"))
.endpoint("<Insert endpoint from Azure Portal>")
.buildAsyncClient();
Of course, synchronous clients may also be instantiated, by calling buildClient rather than
buildAsyncClient.
WebPubSubServiceClient client = new WebPubSubServiceClientBuilder()
.connectionString("<Insert connection string from Azure Portal>")
.buildClient();
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new builder instance with all values set to their default value. -
Method Summary
Modifier and TypeMethodDescriptionaddPolicy(com.azure.core.http.policy.HttpPipelinePolicy policy) Adds apipeline policyto apply on each request sent.Builds an instance of WebPubSubAsyncServiceClient with the provided parameters.Builds an instance of WebPubSubServiceClient with the provided parameters.clientOptions(com.azure.core.util.ClientOptions clientOptions) Allows for setting common properties such as application ID, headers, proxy configuration, etc.configuration(com.azure.core.util.Configuration configuration) Sets the configuration store that is used during construction of the service client.connectionString(String connectionString) Sets the credential to use when authenticating HTTP requests.credential(com.azure.core.credential.AzureKeyCredential credential) Sets theAzureKeyCredentialused to authenticate HTTP requests.credential(com.azure.core.credential.TokenCredential credential) Sets theTokenCredentialused to authorize requests sent to the service.Sets the service endpoint for the Azure Web Pub Sub instance.httpClient(com.azure.core.http.HttpClient client) Sets theHttpClientto use for sending and receiving requests to and from the service.httpLogOptions(com.azure.core.http.policy.HttpLogOptions logOptions) Sets thelogging configurationto use when sending and receiving requests to and from the service.Target hub name, which should start with alphabetic characters and only contain alphanumeric characters or underscore.pipeline(com.azure.core.http.HttpPipeline pipeline) Sets theHttpPipelineto use for the service client.retryOptions(com.azure.core.http.policy.RetryOptions retryOptions) Sets theRetryOptionsfor all the requests made through the client.retryPolicy(com.azure.core.http.policy.RetryPolicy retryPolicy) Sets theHttpPipelinePolicythat is used when each request is sent.reverseProxyEndpoint(String reverseProxyEndpoint) Sets the reverse proxy endpoint.serviceVersion(WebPubSubServiceVersion version) Sets theWebPubSubServiceVersionthat is used when making API requests.
-
Constructor Details
-
WebPubSubServiceClientBuilder
public WebPubSubServiceClientBuilder()Creates a new builder instance with all values set to their default value.
-
-
Method Details
-
clientOptions
Allows for setting common properties such as application ID, headers, proxy configuration, etc. Note that it is recommended that this method be called with an instance of theHttpClientOptionsclass (a subclass of theClientOptionsbase class). The HttpClientOptions subclass provides more configuration options suitable for HTTP clients, which is applicable for any class that implements this HttpTrait interface.Note: It is important to understand the precedence order of the HttpTrait APIs. In particular, if a
HttpPipelineis specified, this takes precedence over all other APIs in the trait, and they will be ignored. If noHttpPipelineis specified, a HTTP pipeline will be constructed internally based on the settings provided to this trait. Additionally, there may be other APIs in types that implement this trait that are also ignored if anHttpPipelineis specified, so please be sure to refer to the documentation of types that implement this trait to understand the full set of implications.- Specified by:
clientOptionsin interfacecom.azure.core.client.traits.HttpTrait<WebPubSubServiceClientBuilder>- Parameters:
clientOptions- A configured instance ofHttpClientOptions.- Returns:
- The updated
WebPubSubServiceClientBuilderobject. - See Also:
-
HttpClientOptions
-
connectionString
Sets the credential to use when authenticating HTTP requests.- Specified by:
connectionStringin interfacecom.azure.core.client.traits.ConnectionStringTrait<WebPubSubServiceClientBuilder>- Parameters:
connectionString- Connection string in the format "endpoint={endpoint_value};accesskey={accesskey_value}"- Returns:
- The updated
WebPubSubServiceClientBuilderobject. - Throws:
NullPointerException- IfconnectionStringisnull.
-
endpoint
Sets the service endpoint for the Azure Web Pub Sub instance.- Specified by:
endpointin interfacecom.azure.core.client.traits.EndpointTrait<WebPubSubServiceClientBuilder>- Parameters:
endpoint- The URL of the Azure Web Pub Sub instance to send service requests to, and receive responses from.- Returns:
- The updated
WebPubSubServiceClientBuilderobject. - Throws:
IllegalArgumentException- ifendpointisnull.
-
credential
public WebPubSubServiceClientBuilder credential(com.azure.core.credential.AzureKeyCredential credential) Sets theAzureKeyCredentialused to authenticate HTTP requests.- Specified by:
credentialin interfacecom.azure.core.client.traits.AzureKeyCredentialTrait<WebPubSubServiceClientBuilder>- Parameters:
credential- AzureKeyCredential used to authenticate HTTP requests.- Returns:
- The updated
WebPubSubServiceClientBuilderobject.
-
credential
public WebPubSubServiceClientBuilder credential(com.azure.core.credential.TokenCredential credential) Sets theTokenCredentialused to authorize requests sent to the service. Refer to the Azure SDK for Java identity and authentication documentation for more details on proper usage of theTokenCredentialtype.- Specified by:
credentialin interfacecom.azure.core.client.traits.TokenCredentialTrait<WebPubSubServiceClientBuilder>- Parameters:
credential-TokenCredentialused to authorize requests sent to the service.- Returns:
- The updated
WebPubSubServiceClientBuilderobject.
-
reverseProxyEndpoint
Sets the reverse proxy endpoint.- Parameters:
reverseProxyEndpoint- The reverse proxy endpoint.- Returns:
- The updated
WebPubSubServiceClientBuilderobject.
-
hub
Target hub name, which should start with alphabetic characters and only contain alphanumeric characters or underscore.- Parameters:
hub- Target hub name, which should start with alphabetic characters and only contain alphanumeric characters or underscore.- Returns:
- The updated
WebPubSubServiceClientBuilderobject. - Throws:
NullPointerException- Ifhubisnull.
-
httpLogOptions
public WebPubSubServiceClientBuilder httpLogOptions(com.azure.core.http.policy.HttpLogOptions logOptions) Sets thelogging configurationto use when sending and receiving requests to and from the service. If alogLevelis not provided, default value ofHttpLogDetailLevel.NONEis set.Note: It is important to understand the precedence order of the HttpTrait APIs. In particular, if a
HttpPipelineis specified, this takes precedence over all other APIs in the trait, and they will be ignored. If noHttpPipelineis specified, a HTTP pipeline will be constructed internally based on the settings provided to this trait. Additionally, there may be other APIs in types that implement this trait that are also ignored if anHttpPipelineis specified, so please be sure to refer to the documentation of types that implement this trait to understand the full set of implications.- Specified by:
httpLogOptionsin interfacecom.azure.core.client.traits.HttpTrait<WebPubSubServiceClientBuilder>- Parameters:
logOptions- Thelogging configurationto use when sending and receiving requests to and from the service.- Returns:
- The updated
WebPubSubServiceClientBuilderobject.
-
addPolicy
public WebPubSubServiceClientBuilder addPolicy(com.azure.core.http.policy.HttpPipelinePolicy policy) Adds apipeline policyto apply on each request sent.Note: It is important to understand the precedence order of the HttpTrait APIs. In particular, if a
HttpPipelineis specified, this takes precedence over all other APIs in the trait, and they will be ignored. If noHttpPipelineis specified, a HTTP pipeline will be constructed internally based on the settings provided to this trait. Additionally, there may be other APIs in types that implement this trait that are also ignored if anHttpPipelineis specified, so please be sure to refer to the documentation of types that implement this trait to understand the full set of implications.- Specified by:
addPolicyin interfacecom.azure.core.client.traits.HttpTrait<WebPubSubServiceClientBuilder>- Parameters:
policy- Apipeline policy.- Returns:
- The updated
WebPubSubServiceClientBuilderobject. - Throws:
NullPointerException- Ifpolicyisnull.
-
httpClient
Sets theHttpClientto use for sending and receiving requests to and from the service.Note: It is important to understand the precedence order of the HttpTrait APIs. In particular, if a
HttpPipelineis specified, this takes precedence over all other APIs in the trait, and they will be ignored. If noHttpPipelineis specified, a HTTP pipeline will be constructed internally based on the settings provided to this trait. Additionally, there may be other APIs in types that implement this trait that are also ignored if anHttpPipelineis specified, so please be sure to refer to the documentation of types that implement this trait to understand the full set of implications.- Specified by:
httpClientin interfacecom.azure.core.client.traits.HttpTrait<WebPubSubServiceClientBuilder>- Parameters:
client- TheHttpClientto use for requests.- Returns:
- The updated
WebPubSubServiceClientBuilderobject.
-
pipeline
Sets theHttpPipelineto use for the service client.Note: It is important to understand the precedence order of the HttpTrait APIs. In particular, if a
HttpPipelineis specified, this takes precedence over all other APIs in the trait, and they will be ignored. If noHttpPipelineis specified, a HTTP pipeline will be constructed internally based on the settings provided to this trait. Additionally, there may be other APIs in types that implement this trait that are also ignored if anHttpPipelineis specified, so please be sure to refer to the documentation of types that implement this trait to understand the full set of implications.If
pipelineis set, all other settings are ignored, aside fromconnectionStringto buildWebPubSubServiceAsyncClientorWebPubSubServiceClient.- Specified by:
pipelinein interfacecom.azure.core.client.traits.HttpTrait<WebPubSubServiceClientBuilder>- Parameters:
pipeline-HttpPipelineto use for sending service requests and receiving responses.- Returns:
- The updated
WebPubSubServiceClientBuilderobject.
-
configuration
Sets the configuration store that is used during construction of the service client. The default configuration store is a clone of theglobal configuration store, useConfiguration.NONEto bypass using configuration settings during construction.- Specified by:
configurationin interfacecom.azure.core.client.traits.ConfigurationTrait<WebPubSubServiceClientBuilder>- Parameters:
configuration- The configuration store used to- Returns:
- The updated
WebPubSubServiceClientBuilderobject.
-
retryPolicy
public WebPubSubServiceClientBuilder retryPolicy(com.azure.core.http.policy.RetryPolicy retryPolicy) Sets theHttpPipelinePolicythat is used when each request is sent. The default retry policy will be used if not provided.Setting this is mutually exclusive with using
retryOptions(RetryOptions).- Parameters:
retryPolicy- user's retry policy applied to each request.- Returns:
- The updated
WebPubSubServiceClientBuilderobject.
-
retryOptions
public WebPubSubServiceClientBuilder retryOptions(com.azure.core.http.policy.RetryOptions retryOptions) Sets theRetryOptionsfor all the requests made through the client.Note: It is important to understand the precedence order of the HttpTrait APIs. In particular, if a
HttpPipelineis specified, this takes precedence over all other APIs in the trait, and they will be ignored. If noHttpPipelineis specified, a HTTP pipeline will be constructed internally based on the settings provided to this trait. Additionally, there may be other APIs in types that implement this trait that are also ignored if anHttpPipelineis specified, so please be sure to refer to the documentation of types that implement this trait to understand the full set of implications.Setting this is mutually exclusive with using
retryPolicy(RetryPolicy).- Specified by:
retryOptionsin interfacecom.azure.core.client.traits.HttpTrait<WebPubSubServiceClientBuilder>- Parameters:
retryOptions- TheRetryOptionsto use for all the requests made through the client.- Returns:
- The updated
WebPubSubServiceClientBuilderobject.
-
serviceVersion
Sets theWebPubSubServiceVersionthat is used when making API requests.If a service version is not provided, the service version that will be used will be the latest known service version based on the version of the client library being used. If no service version is specified, updating to a newer version the client library will have the result of potentially moving to a newer service version.
- Parameters:
version-WebPubSubServiceVersionof the service to be used when making requests.- Returns:
- The updated
WebPubSubServiceClientBuilderobject.
-
buildAsyncClient
Builds an instance of WebPubSubAsyncServiceClient with the provided parameters.- Returns:
- an instance of WebPubSubAsyncServiceClient.
- Throws:
IllegalStateException- If bothretryOptions(RetryOptions)andretryPolicy(RetryPolicy)have been set.
-
buildClient
Builds an instance of WebPubSubServiceClient with the provided parameters.- Returns:
- an instance of WebPubSubServiceClient.
- Throws:
IllegalStateException- If bothretryOptions(RetryOptions)andretryPolicy(RetryPolicy)have been set.
-