RequestAsyncTask
이 클래스는 더 이상 최신 버전의 SDK에서 사용할 수 없습니다.
이 클래스의 최신 버전을 사용할 수 있습니다. 확인해보세요 최신 버전.

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

확장:<any>
패키지:facebook
생성자
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)
매개변수설명
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)
매개변수설명
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)
매개변수설명
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)
매개변수설명
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)
매개변수설명
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)
매개변수설명
connectionThe HTTP connection to use to execute the requests
requestsThe requests to execute
인스턴스 메서드
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)
매개변수설명
result
doInBackground(Void)
protected List doInBackground(Void params)
매개변수설명
params