@@ -56,7 +56,6 @@ public Integer maxIdleTime() {
56
56
* {@linkplain #maxKeepAliveTime()}.
57
57
*
58
58
* @return whether a custom connection keep-alive strategy should be used
59
- *
60
59
* @see #maxKeepAliveTime()
61
60
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Keep-Alive">Keep-Alive</a>
62
61
*/
@@ -85,21 +84,21 @@ public Integer maxConnectionTotal() {
85
84
}
86
85
87
86
/**
88
- * The maximum number of connections the client may keep open at the same time per route .
87
+ * Gets the HTTP Client Provider used by Azure Core when constructing HTTP Client instances .
89
88
*
90
- * @return the maximum number of connections per route
89
+ * @return the provider
91
90
*/
92
- public Integer maxConnectionRoute () {
93
- return maxConnectionRoute ;
91
+ public Class <? extends HttpClientProvider > provider () {
92
+ return provider ;
94
93
}
95
94
96
95
/**
97
- * Gets the HTTP Client Provider used by Azure Core when constructing HTTP Client instances .
96
+ * The maximum number of connections the client may keep open at the same time per route .
98
97
*
99
- * @return the provider
98
+ * @return the maximum number of connections per route
100
99
*/
101
- public Class <? extends HttpClientProvider > provider () {
102
- return provider ;
100
+ public Integer maxConnectionRoute () {
101
+ return maxConnectionRoute ;
103
102
}
104
103
105
104
/**
@@ -150,7 +149,6 @@ public HttpClientPropertiesBuilder maxIdleTime(Integer maxIdleTime) {
150
149
* @param keepAlive set to {@code false} to use a default keep-alive strategy or to {@code true} to use a
151
150
* custom one
152
151
* @return the builder instance
153
- *
154
152
* @see #maxKeepAliveTime(Integer)
155
153
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Keep-Alive">Keep-Alive</a>
156
154
*/
0 commit comments