public class DeletePlayListContentAsync
extends android.os.AsyncTask<java.lang.String,java.lang.Void,java.lang.Void>
Modifier and Type | Class and Description |
---|---|
static interface |
DeletePlayListContentAsync.DeletePlaylistContentListner |
Constructor and Description |
---|
DeletePlayListContentAsync(DeleteContentInput deleteContentInput,
DeletePlayListContentAsync.DeletePlaylistContentListner listener,
android.content.Context context)
Constructor to initialise the private data members.
|
Modifier and Type | Method and Description |
---|---|
protected java.lang.Void |
doInBackground(java.lang.String... strings)
Background thread to execute.
|
protected void |
onPostExecute(java.lang.Void aVoid) |
protected void |
onPreExecute() |
public DeletePlayListContentAsync(DeleteContentInput deleteContentInput, DeletePlayListContentAsync.DeletePlaylistContentListner listener, android.content.Context context)
deleteContentInput
- 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(),setMovieUniqueId() etc.listener
- DeletePlaylistContent Listenercontext
- android.content.Contextprotected java.lang.Void doInBackground(java.lang.String... strings)
doInBackground
in class android.os.AsyncTask<java.lang.String,java.lang.Void,java.lang.Void>
protected void onPreExecute()
onPreExecute
in class android.os.AsyncTask<java.lang.String,java.lang.Void,java.lang.Void>
protected void onPostExecute(java.lang.Void aVoid)
onPostExecute
in class android.os.AsyncTask<java.lang.String,java.lang.Void,java.lang.Void>