2929public final class FileRequestOptions extends RequestOptions {
3030
3131 /**
32- * Represents the concurrent number of simultaneous requests per operation. If it's null, it will be set to the
33- * value specified by the cloud file client's {@link CloudFileClient#getConcurrentRequestCount} method during upload
34- * operations.
32+ * Represents the concurrent number of simultaneous requests per operation. The default value is <code>1</code>.
3533 */
3634 private Integer concurrentRequestCount = null ;
3735
@@ -85,9 +83,8 @@ public FileRequestOptions(final FileRequestOptions other) {
8583 * The input options to copy from when applying defaults
8684 * @param client
8785 * A {@link CloudFileClient} object that represents the service client used to set the default timeout
88- * interval and retry policy, if they are <code>null</code>. Additionally, if the
89- * {@link #concurrentRequestCount} field's value is null, it will be set to the value specified by the
90- * cloud file client's {@link CloudFileClient#getConcurrentRequestCount} method.
86+ * interval and retry policy, if they are <code>null</code>. Additionally, the default value of
87+ * {@link #concurrentRequestCount} is <code>1</code>.
9188 */
9289 protected static final FileRequestOptions populateAndApplyDefaults (final FileRequestOptions options ,
9390 final CloudFileClient client ) {
@@ -102,9 +99,8 @@ protected static final FileRequestOptions populateAndApplyDefaults(final FileReq
10299 * The input options to copy from when applying defaults
103100 * @param client
104101 * A {@link CloudFileClient} object that represents the service client used to set the default timeout
105- * interval and retry policy, if they are <code>null</code>. Additionally, if the
106- * {@link #concurrentRequestCount} field's value is null, it will be set to the value specified by the
107- * cloud blob client's {@link CloudFileClient#getConcurrentRequestCount} method.
102+ * interval and retry policy, if they are <code>null</code>. Additionally, the default value of
103+ * {@link #concurrentRequestCount} is <code>1</code>.
108104 * @param setStartTime
109105 * whether to initialize the startTimeInMs field, or not
110106 */
0 commit comments