Helper methods to release resources of HttpClient / HttpResponse after use
---------------------------------------------------------------------------
Key: HTTPCLIENT-1159
URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1159
Project: HttpComponents HttpClient
Issue Type: Improvement
Reporter: Karthik K
Attachments: HTTPCLIENT-1159.patch
Found myself writing this boiler plate code in various httpclient related
projects , to release resources , and wanted to provide a simpler way to
release resources similar to IOUtils.closeQuietly as opposed to maintaining the
same in my code.
New class:
o.a.http.client.utils.HttpClientUtils added:
<pre>
public static void closeQuietly(final HttpResponse response);
public static void closeQuietly(final HttpClient httpClient);
</pre>
with 2 methods ( as above ) in the same, to help release resources:
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]