List of usage examples for android.os AsyncTask subclass-usage
From source file com.lgallardo.qbittorrentclient.TrackersTask.java
/** * Created by lgallard on 07/06/16. */ // // Here is where the action happens public class TrackersTask extends AsyncTask<String, Void, ArrayList<TorrentDetailsItem>> {
From source file net.nordist.lloydproof.CorrectionUploader.java
public class CorrectionUploader extends AsyncTask<Void, Void, Void> { private static final String TAG = "CorrectionUploader"; private CorrectionStorage store; private CorrectionUploadObserver observer; private int uploadedCount;
From source file asynctasks.UpdateTicketDataAsync.java
public class UpdateTicketDataAsync extends AsyncTask<String, Void, JSONObject> { private ProgressDialog pDialog; private JSONSerializer jSerial = new JSONSerializer(); private String updateticketUrl = "http://www.chumlychum.com/valet/valetapi/updateticket.php";
From source file com.lgallardo.qbittorrentclient.ContentFileTask.java
/** * Created by lgallard on 07/06/16. */ // // Here is where the action happens public class ContentFileTask extends AsyncTask<String, Void, ArrayList<TorrentDetailsItem>> {
From source file org.kei.android.phone.mangastore.http.HttpTaskRemove.java
/**
*******************************************************************************
* @file HttpTaskRemove.java
* @author Keidan
* @date 15/04/2016
* @par Project MangaStore
From source file io.v.x.media_sharing.SendMediaTask.java
/** * Background task to stream media without blocking the UI thread. */ public class SendMediaTask extends AsyncTask<Void, Void, Void> { private static final String TAG = "SendMediaTask";
From source file asynctasks.LoadTicketDataAsync.java
public class LoadTicketDataAsync extends AsyncTask<String, Void, JSONObject> { private Context context; FragmentManager fm; private ProgressDialog pDialog;
From source file org.kei.android.phone.mangastore.http.HttpTaskAdd.java
/**
*******************************************************************************
* @file HttpTaskAdd.java
* @author Keidan
* @date 15/04/2016
* @par Project MangaStore
From source file jp.co.rakuten.rakutenvideoplayer.api.Api_PermitOauth.java
/** * * @author nguyenvantu * */ public class Api_PermitOauth extends AsyncTask<List<NameValuePair>, String, Model_LicenseCode> {
From source file com.muzima.tasks.ValidateURLTask.java
public class ValidateURLTask extends AsyncTask<String, Void, Boolean> { private final SettingsActivity settingsActivity; private ProgressDialog progressDialog; public ValidateURLTask(SettingsActivity settingsActivity) {