HttpClientConnectionManager.java (httpcomponents-client-4.5.6-src) | : | HttpClientConnectionManager.java (httpcomponents-client-4.5.7-src) | ||
---|---|---|---|---|
skipping to change at line 158 | skipping to change at line 158 | |||
* Open connections in the pool that have not been used for the | * Open connections in the pool that have not been used for the | |||
* timespan given by the argument will be closed. | * timespan given by the argument will be closed. | |||
* Currently allocated connections are not subject to this method. | * Currently allocated connections are not subject to this method. | |||
* Times will be checked with milliseconds precision | * Times will be checked with milliseconds precision | |||
* </p> | * </p> | |||
* <p> | * <p> | |||
* All expired connections will also be closed. | * All expired connections will also be closed. | |||
* </p> | * </p> | |||
* | * | |||
* @param idletime the idle time of connections to be closed | * @param idletime the idle time of connections to be closed | |||
* @param tunit the unit for the {@code idletime} | * @param timeUnit the unit for the {@code idletime} | |||
* | * | |||
* @see #closeExpiredConnections() | * @see #closeExpiredConnections() | |||
*/ | */ | |||
void closeIdleConnections(long idletime, TimeUnit tunit); | void closeIdleConnections(long idletime, TimeUnit timeUnit); | |||
/** | /** | |||
* Closes all expired connections in the pool. | * Closes all expired connections in the pool. | |||
* <p> | * <p> | |||
* Open connections in the pool that have not been used for | * Open connections in the pool that have not been used for | |||
* the timespan defined when the connection was released will be closed. | * the timespan defined when the connection was released will be closed. | |||
* Currently allocated connections are not subject to this method. | * Currently allocated connections are not subject to this method. | |||
* Times will be checked with milliseconds precision. | * Times will be checked with milliseconds precision. | |||
* </p> | * </p> | |||
*/ | */ | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |