Guest User

Untitled

a guest
Jun 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. /**
  2. * @author dlinder
  3. * Wrapper class for HTTPClient for convenience and connection pooling
  4. */
  5. public class HTTPClientPool {
  6.  
  7. private static HttpClient client;
  8.  
  9. static {
  10. client = new HttpClient(new MultiThreadedHttpConnectionManager());
  11. ...
  12. }
  13. ...
  14. }
Add Comment
Please, Sign In to add comment