Sets the default write timeout for new connections. A value of 0 means no timeout. @param timeout the number of time units for the default timeout @param unit the unit of time
(long timeout, TimeUnit unit)
| 302 | * @param unit the unit of time |
| 303 | */ |
| 304 | public void setWriteTimeout(long timeout, TimeUnit unit) { |
| 305 | this.httpClient.setWriteTimeout(timeout, unit); |
| 306 | } |
| 307 | |
| 308 | /** |
| 309 | * Sets the proxy information for the HTTP client. |
no outgoing calls
no test coverage detected