Sets the default read 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)
| 293 | * @param unit the unit of time |
| 294 | */ |
| 295 | public void setReadTimeout(long timeout, TimeUnit unit) { |
| 296 | this.httpClient.setReadTimeout(timeout, unit); |
| 297 | } |
| 298 | |
| 299 | /** |
| 300 | * Sets the default write timeout for new connections. A value of 0 means no timeout. |
no outgoing calls
no test coverage detected