You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/storage/azure-storage-blob-cryptography/src/main/java/com/azure/storage/blob/specialized/cryptography/EncryptedBlobClient.java
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,9 @@ public class EncryptedBlobClient extends BlobClient {
75
75
76
76
/**
77
77
* Creates and opens an output stream to write data to the block blob.
78
+
* <p>
79
+
* Note: We recommend you call write with reasonably sized buffers, you can do so by wrapping the BlobOutputStream
80
+
* obtained below with a {@link java.io.BufferedOutputStream}.
78
81
*
79
82
* @return A {@link BlobOutputStream} object used to write data to the blob.
80
83
* @throws BlobStorageException If a storage service error occurred.
@@ -85,6 +88,9 @@ public BlobOutputStream getBlobOutputStream() {
85
88
86
89
/**
87
90
* Creates and opens an output stream to write data to the block blob.
91
+
* <p>
92
+
* Note: We recommend you call write with reasonably sized buffers, you can do so by wrapping the BlobOutputStream
93
+
* obtained below with a {@link java.io.BufferedOutputStream}.
88
94
*
89
95
* @return A {@link BlobOutputStream} object used to write data to the blob.
90
96
* @param overwrite Whether or not to overwrite, should data exist on the blob.
@@ -106,6 +112,9 @@ public BlobOutputStream getBlobOutputStream(boolean overwrite) {
106
112
* will be overwritten.
107
113
* <p>
108
114
* To avoid overwriting, pass "*" to {@link BlobRequestConditions#setIfNoneMatch(String)}.
115
+
* <p>
116
+
* Note: We recommend you call write with reasonably sized buffers, you can do so by wrapping the BlobOutputStream
117
+
* obtained below with a {@link java.io.BufferedOutputStream}.
109
118
*
110
119
* @param parallelTransferOptions {@link ParallelTransferOptions} used to configure buffered uploading.
111
120
* @param headers {@link BlobHttpHeaders}
@@ -130,7 +139,10 @@ public BlobOutputStream getBlobOutputStream(ParallelTransferOptions parallelTran
130
139
* will be overwritten.
131
140
* <p>
132
141
* To avoid overwriting, pass "*" to {@link BlobRequestConditions#setIfNoneMatch(String)}.
133
-
*
142
+
* <p>
143
+
* Note: We recommend you call write with reasonably sized buffers, you can do so by wrapping the BlobOutputStream
144
+
* obtained below with a {@link java.io.BufferedOutputStream}.
Copy file name to clipboardExpand all lines: sdk/storage/azure-storage-file-datalake/src/main/java/com/azure/storage/file/datalake/options/FileSystemUndeleteOptions.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
* Extended options that may be passed when restoring a file system.
0 commit comments