Class BlobChangefeedClientBuilder
java.lang.Object
com.azure.storage.blob.changefeed.BlobChangefeedClientBuilder
This class provides a fluent builder API to help aid the configuration and instantiation of
BlobChangefeedClients and BlobChangefeedAsyncClients
when buildClient and buildAsyncClient are called respectively.-
Constructor Summary
ConstructorsConstructorDescriptionConstructs theBlobChangefeedClientBuilderfrom from the URL and pipeline of theBlobServiceAsyncClient.Constructs theBlobChangefeedClientBuilderfrom the URL and pipeline of theBlobServiceClient. -
Method Summary
Modifier and TypeMethodDescriptionCreates aBlobChangefeedAsyncClient.Creates aBlobChangefeedClient.
-
Constructor Details
-
BlobChangefeedClientBuilder
Constructs theBlobChangefeedClientBuilderfrom the URL and pipeline of theBlobServiceClient.- Parameters:
client-BlobServiceClientwhose properties are used to configure the builder.
-
BlobChangefeedClientBuilder
Constructs theBlobChangefeedClientBuilderfrom from the URL and pipeline of theBlobServiceAsyncClient.- Parameters:
client-BlobServiceClientwhose properties are used to configure the builder.
-
-
Method Details
-
buildClient
Creates aBlobChangefeedClient.Code sample
BlobChangefeedClient changefeedClient = new BlobChangefeedClientBuilder(blobServiceClient).buildClient();
F- Returns:
- a
BlobChangefeedClientcreated from the configurations in this builder.
-
buildAsyncClient
Creates aBlobChangefeedAsyncClient.Code sample
BlobChangefeedAsyncClient changefeedClient = new BlobChangefeedClientBuilder(blobServiceAsyncClient).buildAsyncClient();
- Returns:
- a
BlobChangefeedAsyncClientcreated from the configurations in this builder.
-