Created
May 8, 2016 17:12
-
-
Save VassilisPallas/24db7f8f03ccc2372e7b0ccbe2693085 to your computer and use it in GitHub Desktop.
InputStream Request for Volley
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.android.volley.AuthFailureError; | |
import com.android.volley.NetworkResponse; | |
import com.android.volley.Request; | |
import com.android.volley.Response; | |
import com.android.volley.toolbox.HttpHeaderParser; | |
import java.util.Map; | |
/** | |
* Created by vspallas on 03/03/16. | |
*/ | |
public class InputStreamVolleyRequest extends Request<byte[]> { | |
private final Response.Listener<byte[]> listener; | |
private Map<String, String> params; | |
//static map for directly accessing headers | |
public Map<String, String> responseHeaders; | |
public InputStreamVolleyRequest(int method, String url, Response.Listener<byte[]> listener, Response.ErrorListener errorListener, Map<String, String> params) { | |
super(method, url, errorListener); | |
setShouldCache(false); | |
this.listener = listener; | |
this.params = params; | |
} | |
@Override | |
protected Map<String, String> getParams() throws AuthFailureError { | |
//return super.getParams(); | |
return params; | |
} | |
@Override | |
protected Response<byte[]> parseNetworkResponse(NetworkResponse response) { | |
//Initialise local responseHeaders map with response headers received | |
responseHeaders = response.headers; | |
//Pass the response data here | |
return Response.success(response.data, HttpHeaderParser.parseCacheHeaders(response)); | |
} | |
@Override | |
protected void deliverResponse(byte[] response) { | |
listener.onResponse(response); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment