Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@


/**
* Client to an append blob. It may only be instantiated through a {@link AppendBlobClientBuilder#buildAsyncClient()}, via
* the method {@link BlobAsyncClient#asAppendBlobAsyncClient()}, or via the method
* Client to an append blob. It may only be instantiated through a {@link BlobClientBuilder#buildAppendBlobAsyncClient()},
* via the method {@link BlobAsyncClient#asAppendBlobAsyncClient()}, or via the method
* {@link ContainerAsyncClient#getAppendBlobAsyncClient(String)}. This class does not hold
* any state about a particular blob, but is instead a convenient way of sending appropriate
* requests to the resource on the service.
Expand Down Expand Up @@ -58,7 +58,7 @@ public final class AppendBlobAsyncClient extends BlobAsyncClient {
public static final int MAX_BLOCKS = 50000;

/**
* Package-private constructor for use by {@link AppendBlobClientBuilder}.
* Package-private constructor for use by {@link BlobClientBuilder}.
* @param azureBlobStorageBuilder the API client builder for blob storage API
*/
AppendBlobAsyncClient(AzureBlobStorageBuilder azureBlobStorageBuilder, String snapshot) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


/**
* Client to an append blob. It may only be instantiated through a {@link AppendBlobClientBuilder}, via
* Client to an append blob. It may only be instantiated through a {@link BlobClientBuilder}, via
* the method {@link BlobClient#asAppendBlobClient()}, or via the method
* {@link ContainerClient#getAppendBlobClient(String)}. This class does not hold
* any state about a particular blob, but is instead a convenient way of sending appropriate
Expand Down Expand Up @@ -51,7 +51,7 @@ public final class AppendBlobClient extends BlobClient {
public static final int MAX_BLOCKS = AppendBlobAsyncClient.MAX_BLOCKS;

/**
* Package-private constructor for use by {@link AppendBlobClientBuilder}.
* Package-private constructor for use by {@link BlobClientBuilder}.
* @param appendBlobAsyncClient the async append blob client
*/
AppendBlobClient(AppendBlobAsyncClient appendBlobAsyncClient) {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,12 @@
* operation, until {@code .subscribe()} is called on the reactive response. You can simply convert one of these
* responses to a {@link java.util.concurrent.CompletableFuture} object through {@link Mono#toFuture()}.
*/
@SuppressWarnings({"unused", "WeakerAccess"})
public class BlobAsyncClient {
private static final int BLOB_DEFAULT_DOWNLOAD_BLOCK_SIZE = 4 * Constants.MB;
private static final int BLOB_MAX_DOWNLOAD_BLOCK_SIZE = 100 * Constants.MB;

protected final AzureBlobStorageImpl azureBlobStorage;
final AzureBlobStorageImpl azureBlobStorage;
protected final String snapshot;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
* Please refer to the <a href=https://docs.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs>Azure
* Docs</a> for more information.
*/
@SuppressWarnings({"unused", "WeakerAccess"})
public class BlobClient {
private final BlobAsyncClient blobAsyncClient;

Expand Down
Loading