File tree 1 file changed +6
-4
lines changed
spring-web/src/main/java/org/springframework/http/client/reactive
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -107,8 +107,9 @@ public void addGlobalResourcesConsumer(Consumer<HttpResources> consumer) {
107
107
* Use this when you don't want to participate in global resources and
108
108
* you want to customize the creation of the managed {@code ConnectionProvider}.
109
109
* <p>By default, {@code ConnectionProvider.elastic("http")} is used.
110
- * <p>Note that this option is ignored if {@code userGlobalResources=false} or
111
- * {@link #setConnectionProvider(ConnectionProvider)} is set.
110
+ * <p>Note that this supplier is ignored if {@link #isUseGlobalResources()}
111
+ * is {@code true} or once the {@link #setConnectionProvider(ConnectionProvider) ConnectionProvider}
112
+ * is set.
112
113
* @param supplier the supplier to use
113
114
*/
114
115
public void setConnectionProviderSupplier (Supplier <ConnectionProvider > supplier ) {
@@ -136,8 +137,9 @@ public ConnectionProvider getConnectionProvider() {
136
137
* Use this when you don't want to participate in global resources and
137
138
* you want to customize the creation of the managed {@code LoopResources}.
138
139
* <p>By default, {@code LoopResources.create("webflux-http")} is used.
139
- * <p>Note that this option is ignored if {@code userGlobalResources=false} or
140
- * {@link #setLoopResources(LoopResources)} is set.
140
+ * <p>Note that this supplier is ignored if {@link #isUseGlobalResources()}
141
+ * is {@code true} or once the {@link #setLoopResources(LoopResources) LoopResources}
142
+ * is set.
141
143
* @param supplier the supplier to use
142
144
*/
143
145
public void setLoopResourcesSupplier (Supplier <LoopResources > supplier ) {
You can’t perform that action at this time.
0 commit comments