RequestAsyncTask
Cette classe n’est plus disponible dans la version la plus récente du SDK.
Une version plus récente de cette classe est disponible. Rendez-vous sur la dernière version.

Defines an AsyncTask suitable for executing a Request in the background. May be subclassed by applications having unique threading model needs.

Prolonge :<any>
Package :facebook
Constructeurs
RequestAsyncTask(Request)

Constructor. Serialization of the requests will be done in the background, so any serialization- related errors will be returned via the Response.getException() method.

public RequestAsyncTask(Request requests)
ParamètreDescription
requestsThe requests to execute
RequestAsyncTask(Collection)

Constructor. Serialization of the requests will be done in the background, so any serialization- related errors will be returned via the Response.getException() method.

public RequestAsyncTask(Collection requests)
ParamètreDescription
requestsThe requests to execute
RequestAsyncTask(RequestBatch)

Constructor. Serialization of the requests will be done in the background, so any serialization- related errors will be returned via the Response.getException() method.

public RequestAsyncTask(RequestBatch requests)
ParamètreDescription
requestsThe requests to execute
RequestAsyncTask(HttpURLConnection, Request)

Constructor that allows specification of an HTTP connection to use for executing the requests. No validation is done that the contents of the connection actually reflect the serialized requests, so it is the caller's responsibility to ensure that it will correctly generate the desired responses.

public RequestAsyncTask(HttpURLConnection connection, Request requests)
ParamètreDescription
connectionThe HTTP connection to use to execute the requests
requestsThe requests to execute
RequestAsyncTask(HttpURLConnection, Collection)

Constructor that allows specification of an HTTP connection to use for executing the requests. No validation is done that the contents of the connection actually reflect the serialized requests, so it is the caller's responsibility to ensure that it will correctly generate the desired responses.

public RequestAsyncTask(HttpURLConnection connection, Collection requests)
ParamètreDescription
connectionThe HTTP connection to use to execute the requests
requestsThe requests to execute
RequestAsyncTask(HttpURLConnection, RequestBatch)

Constructor that allows specification of an HTTP connection to use for executing the requests. No validation is done that the contents of the connection actually reflect the serialized requests, so it is the caller's responsibility to ensure that it will correctly generate the desired responses.

public RequestAsyncTask(HttpURLConnection connection, RequestBatch requests)
ParamètreDescription
connectionThe HTTP connection to use to execute the requests
requestsThe requests to execute
Méthodes d’instance
getException()
protected final Exception getException()
getRequests()
protected final RequestBatch getRequests()
toString()
public String toString()
onPreExecute()
protected void onPreExecute()
onPostExecute(List)
protected void onPostExecute(List result)
ParamètreDescription
result
doInBackground(Void)
protected List doInBackground(Void params)
ParamètreDescription
params