Can I use one instance of AndroidHttpClient for multiple calls simultaneously

AndroidHttpClient said it is thread safe . Just make sure this means that I can use one client instance in my application for all HTTP requests? Is there any reason not to do this?

In my source code, I noticed that it uses BasicHttpContext , not SyncBasicHttpContext . Does ThreadSafeClientConnManager all thread complexity?

+4
source share

All Articles