public class UpdateGoogleIdAsync extends android.os.AsyncTask<UpdateGoogleIdInputModel,java.lang.Void,java.lang.Void>
| Modifier and Type | Class and Description | 
|---|---|
| static interface  | UpdateGoogleIdAsync.UpdateGoogleIdListenerInterface used to allow the caller of a UpdateGoogleIdAsynTask to run some code when get
 responses. | 
| Constructor and Description | 
|---|
| UpdateGoogleIdAsync(UpdateGoogleIdInputModel updateGoogleIdInputModel,
                   UpdateGoogleIdAsync.UpdateGoogleIdListener listener,
                   android.content.Context context)Constructor to initialise the private data members. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected java.lang.Void | doInBackground(UpdateGoogleIdInputModel... params)Background thread to execute. | 
| protected void | onPostExecute(java.lang.Void result) | 
| protected void | onPreExecute() | 
public UpdateGoogleIdAsync(UpdateGoogleIdInputModel updateGoogleIdInputModel, UpdateGoogleIdAsync.UpdateGoogleIdListener listener, android.content.Context context)
updateGoogleIdInputModel - 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(),setUser_id() etc.listener - UpdateGoogleIdListenercontext - android.content.Contextprotected java.lang.Void doInBackground(UpdateGoogleIdInputModel... params)
doInBackground in class android.os.AsyncTask<UpdateGoogleIdInputModel,java.lang.Void,java.lang.Void>protected void onPreExecute()
onPreExecute in class android.os.AsyncTask<UpdateGoogleIdInputModel,java.lang.Void,java.lang.Void>protected void onPostExecute(java.lang.Void result)
onPostExecute in class android.os.AsyncTask<UpdateGoogleIdInputModel,java.lang.Void,java.lang.Void>