public class TrailerDetailsAsync extends android.os.AsyncTask<GetVideoDetailsInput,java.lang.Void,java.lang.Void>
Modifier and Type | Class and Description |
---|---|
static interface |
TrailerDetailsAsync.TrailerDetailsListener
Interface used to allow the caller of a VideoDetailsAsynctask to run some code when get
responses.
|
Constructor and Description |
---|
TrailerDetailsAsync(TrailerInputModel trailerInputModel,
TrailerDetailsAsync.TrailerDetailsListener listener,
android.content.Context context)
Constructor to initialise the private data members.
|
Modifier and Type | Method and Description |
---|---|
protected java.lang.Void |
doInBackground(GetVideoDetailsInput... params)
Background thread to execute.
|
protected void |
onPostExecute(java.lang.Void result) |
protected void |
onPreExecute() |
public TrailerDetailsAsync(TrailerInputModel trailerInputModel, TrailerDetailsAsync.TrailerDetailsListener listener, android.content.Context context)
trailerInputModel
- A Model Class which is use for background task, we need to set all the attributes through setter methods of input model class,
For Example: to use this API we have to set following attributes:
setAuthToken(),setContent_uniq_id() etc.listener
- TrailerDetails Listenercontext
- android.content.Contextprotected java.lang.Void doInBackground(GetVideoDetailsInput... params)
doInBackground
in class android.os.AsyncTask<GetVideoDetailsInput,java.lang.Void,java.lang.Void>
org.apache.http.conn.ConnectTimeoutException,IOException,JSONException
protected void onPreExecute()
onPreExecute
in class android.os.AsyncTask<GetVideoDetailsInput,java.lang.Void,java.lang.Void>
protected void onPostExecute(java.lang.Void result)
onPostExecute
in class android.os.AsyncTask<GetVideoDetailsInput,java.lang.Void,java.lang.Void>