java.lang.Object |
↳ |
com.android.volley.Request<T> |
|
↳ |
com.facebook.imagepipeline.backends.volley.RawRequest |
Class Overview
A Volley request that will return the raw content as a byte array and does not use Volley's
cache.
Summary
Public Constructors |
|
RawRequest(String url, Listener<byte[]> listener, Response.ErrorListener errorListener)
|
[Expand]
Inherited Methods |
From class
com.android.volley.Request
void
|
addMarker(String arg0)
|
void
|
cancel()
|
int
|
compareTo(Request<T> arg0)
|
int
|
compareTo(Object arg0)
|
void
|
deliverError(VolleyError arg0)
|
abstract
void
|
deliverResponse(T arg0)
|
byte[]
|
getBody()
|
String
|
getBodyContentType()
|
Cache.Entry
|
getCacheEntry()
|
String
|
getCacheKey()
|
Response.ErrorListener
|
getErrorListener()
|
Map<String, String>
|
getHeaders()
|
int
|
getMethod()
|
String
|
getOriginUrl()
|
Map<String, String>
|
getParams()
|
String
|
getParamsEncoding()
|
byte[]
|
getPostBody()
|
String
|
getPostBodyContentType()
|
Map<String, String>
|
getPostParams()
|
String
|
getPostParamsEncoding()
|
Request.Priority
|
getPriority()
|
RetryPolicy
|
getRetryPolicy()
|
final
int
|
getSequence()
|
Object
|
getTag()
|
final
int
|
getTimeoutMs()
|
int
|
getTrafficStatsTag()
|
String
|
getUrl()
|
boolean
|
hasHadResponseDelivered()
|
boolean
|
isCanceled()
|
void
|
markDelivered()
|
VolleyError
|
parseNetworkError(VolleyError arg0)
|
abstract
Response<T>
|
parseNetworkResponse(NetworkResponse arg0)
|
Request<?>
|
setCacheEntry(Cache.Entry arg0)
|
void
|
setRedirectUrl(String arg0)
|
Request<?>
|
setRequestQueue(RequestQueue arg0)
|
Request<?>
|
setRetryPolicy(RetryPolicy arg0)
|
final
Request<?>
|
setSequence(int arg0)
|
final
Request<?>
|
setShouldCache(boolean arg0)
|
Request<?>
|
setTag(Object arg0)
|
final
boolean
|
shouldCache()
|
String
|
toString()
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
java.lang.Comparable
abstract
int
|
compareTo(T arg0)
|
|
Public Constructors
public
RawRequest
(String url, Listener<byte[]> listener, Response.ErrorListener errorListener)
Protected Methods
protected
void
deliverResponse
(byte[] bytes)
protected
Response<byte[]>
parseNetworkResponse
(NetworkResponse response)