public class LoadFilterVideoAsync extends android.os.AsyncTask<LoadFilterVideoInput,java.lang.Void,java.lang.Void>
Modifier and Type | Class and Description |
---|---|
static interface |
LoadFilterVideoAsync.LoadFilterVideoListner
Interface used to allow the caller of a LoadFilterVideoAsync to run some code when get
responses.
|
Constructor and Description |
---|
LoadFilterVideoAsync(LoadFilterVideoInput loadFilterVideoInput,
LoadFilterVideoAsync.LoadFilterVideoListner listener,
android.content.Context context)
Constructor to initialise the private data members.
|
Modifier and Type | Method and Description |
---|---|
protected java.lang.Void |
doInBackground(LoadFilterVideoInput... params) |
protected void |
onPostExecute(java.lang.Void aVoid) |
protected void |
onPreExecute() |
public LoadFilterVideoAsync(LoadFilterVideoInput loadFilterVideoInput, LoadFilterVideoAsync.LoadFilterVideoListner listener, android.content.Context context)
loadFilterVideoInput
- 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(),setOffset() etc.listener
- LoadFilterVideoAsync Listenercontext
- android.content.Contextprotected java.lang.Void doInBackground(LoadFilterVideoInput... params)
doInBackground
in class android.os.AsyncTask<LoadFilterVideoInput,java.lang.Void,java.lang.Void>
protected void onPreExecute()
onPreExecute
in class android.os.AsyncTask<LoadFilterVideoInput,java.lang.Void,java.lang.Void>
protected void onPostExecute(java.lang.Void aVoid)
onPostExecute
in class android.os.AsyncTask<LoadFilterVideoInput,java.lang.Void,java.lang.Void>