File tree 1 file changed +6
-4
lines changed
spring-web/src/main/java/org/springframework/http/client
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -122,8 +122,9 @@ public void addGlobalResourcesConsumer(Consumer<HttpResources> consumer) {
122
122
* Use this when you don't want to participate in global resources and
123
123
* you want to customize the creation of the managed {@code ConnectionProvider}.
124
124
* <p>By default, {@code ConnectionProvider.elastic("http")} is used.
125
- * <p>Note that this option is ignored if {@code userGlobalResources=false} or
126
- * {@link #setConnectionProvider(ConnectionProvider)} is set.
125
+ * <p>Note that this supplier is ignored if {@link #isUseGlobalResources()}
126
+ * is {@code true} or once the {@link #setConnectionProvider(ConnectionProvider) ConnectionProvider}
127
+ * is set.
127
128
* @param supplier the supplier to use
128
129
*/
129
130
public void setConnectionProviderSupplier (Supplier <ConnectionProvider > supplier ) {
@@ -157,8 +158,9 @@ public ConnectionProvider getConnectionProvider() {
157
158
* Use this when you don't want to participate in global resources and
158
159
* you want to customize the creation of the managed {@code LoopResources}.
159
160
* <p>By default, {@code LoopResources.create("webflux-http")} is used.
160
- * <p>Note that this option is ignored if {@code userGlobalResources=false} or
161
- * {@link #setLoopResources(LoopResources)} is set.
161
+ * <p>Note that this supplier is ignored if {@link #isUseGlobalResources()}
162
+ * is {@code true} or once the {@link #setLoopResources(LoopResources) LoopResources}
163
+ * is set.
162
164
* @param supplier the supplier to use
163
165
*/
164
166
public void setLoopResourcesSupplier (Supplier <LoopResources > supplier ) {
You can’t perform that action at this time.
0 commit comments