@@ -135,7 +135,7 @@ public void setMaxParts(int maxParts) {
135
135
}
136
136
137
137
/**
138
- * Sets the directory used to store parts larger than
138
+ * Set the directory used to store parts larger than
139
139
* {@link #setMaxInMemorySize(int) maxInMemorySize}. By default, a directory
140
140
* named {@code spring-webflux-multipart} is created under the system
141
141
* temporary directory.
@@ -154,7 +154,7 @@ public void setFileStorageDirectory(Path fileStorageDirectory) throws IOExceptio
154
154
}
155
155
156
156
/**
157
- * Sets the Reactor {@link Scheduler} to be used for creating files and
157
+ * Set the Reactor {@link Scheduler} to be used for creating files and
158
158
* directories, and writing to files. By default,
159
159
* {@link Schedulers#boundedElastic()} is used, but this property allows for
160
160
* changing it to an externally managed scheduler.
@@ -174,13 +174,11 @@ public void setBlockingOperationScheduler(Scheduler blockingOperationScheduler)
174
174
* in memory nor file.
175
175
* When {@code false}, parts are backed by
176
176
* in-memory and/or file storage. Defaults to {@code false}.
177
- *
178
177
* <p><strong>NOTE</strong> that with streaming enabled, the
179
178
* {@code Flux<Part>} that is produced by this message reader must be
180
179
* consumed in the original order, i.e. the order of the HTTP message.
181
180
* Additionally, the {@linkplain Part#content() body contents} must either
182
181
* be completely consumed or canceled before moving to the next part.
183
- *
184
182
* <p>Also note that enabling this property effectively ignores
185
183
* {@link #setMaxInMemorySize(int) maxInMemorySize},
186
184
* {@link #setMaxDiskUsagePerPart(long) maxDiskUsagePerPart},
@@ -192,8 +190,8 @@ public void setStreaming(boolean streaming) {
192
190
}
193
191
194
192
/**
195
- * Sets the character set used to decode headers. Defaults to
196
- * UTF-8 as per RFC 7578.
193
+ * Set the character set used to decode headers.
194
+ * Defaults to UTF-8 as per RFC 7578.
197
195
* @param headersCharset the charset to use for decoding headers
198
196
* @since 5.3.6
199
197
* @see <a href="https://tools.ietf.org/html/rfc7578#section-5.1">RFC-7578 Section 5.2</a>
0 commit comments