Skip to content

Commit 7dc6759

Browse files
author
Noor Dawod
committed
Allow developers to provide their own implementation for AsyncHttpRequest.
1 parent 1bdde80 commit 7dc6759

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

library/src/main/java/com/loopj/android/http/AsyncHttpClient.java

+17-1
Original file line numberDiff line numberDiff line change
@@ -1029,6 +1029,22 @@ public RequestHandle delete(Context context, String url, Header[] headers, Reque
10291029

10301030
// [-] HTTP DELETE
10311031

1032+
/**
1033+
* Instantiate a new asynchronous HTTP request for the passed parameters.
1034+
*
1035+
* @param client HttpClient to be used for request, can differ in single requests
1036+
* @param contentType MIME body type, for POST and PUT requests, may be null
1037+
* @param context Context of Android application, to hold the reference of request
1038+
* @param httpContext HttpContext in which the request will be executed
1039+
* @param responseHandler ResponseHandler or its subclass to put the response into
1040+
* @param uriRequest instance of HttpUriRequest, which means it must be of HttpDelete,
1041+
* HttpPost, HttpGet, HttpPut, etc.
1042+
* @return AsyncHttpRequest ready to be dispatched
1043+
*/
1044+
protected AsyncHttpRequest newAsyncHttpRequest(DefaultHttpClient client, HttpContext httpContext, HttpUriRequest uriRequest, String contentType, ResponseHandlerInterface responseHandler, Context context) {
1045+
return new AsyncHttpRequest(client, httpContext, uriRequest, responseHandler);
1046+
}
1047+
10321048
/**
10331049
* Puts a new request in queue as a new thread in pool to be executed
10341050
*
@@ -1061,7 +1077,7 @@ protected RequestHandle sendRequest(DefaultHttpClient client, HttpContext httpCo
10611077
responseHandler.setRequestHeaders(uriRequest.getAllHeaders());
10621078
responseHandler.setRequestURI(uriRequest.getURI());
10631079

1064-
AsyncHttpRequest request = new AsyncHttpRequest(client, httpContext, uriRequest, responseHandler);
1080+
AsyncHttpRequest request = newAsyncHttpRequest(client, httpContext, uriRequest, contentType, responseHandler, context);
10651081
threadPool.submit(request);
10661082
RequestHandle requestHandle = new RequestHandle(request);
10671083

library/src/main/java/com/loopj/android/http/SyncHttpClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ protected RequestHandle sendRequest(DefaultHttpClient client,
7575
/*
7676
* will execute the request directly
7777
*/
78-
new AsyncHttpRequest(client, httpContext, uriRequest, responseHandler).run();
78+
newAsyncHttpRequest(client, httpContext, uriRequest, contentType, responseHandler, context).run();
7979

8080
// Return a Request Handle that cannot be used to cancel the request
8181
// because it is already complete by the time this returns

0 commit comments

Comments
 (0)