List of usage examples for android.os AsyncTask subclass-usage
From source file org.peterbaldwin.vlcremote.net.ServerConnectionTest.java
/** * * @author Sam Malone */ public class ServerConnectionTest extends AsyncTask<Server, Void, Integer> {
From source file com.liferay.mobile.sample.task.UsersAsyncTask.java
/** * @author Bruno Farache */ public class UsersAsyncTask extends AsyncTask<Void, Void, ArrayList<User>> { public UsersAsyncTask(MainActivity activity) {
From source file com.psaravan.filebrowserview.lib.AsyncTasks.AsyncCopyTask.java
/** * AsyncTask that copies the specified file/folder recursively to a new location. * * @author Saravan Pantham */ public class AsyncCopyTask extends AsyncTask<String, Void, Boolean> {
From source file com.psaravan.filebrowserview.lib.AsyncTasks.AsyncMoveTask.java
/** * AsyncTask that moves the specified file/folder recursively to a new location. * * @author Saravan Pantham */ public class AsyncMoveTask extends AsyncTask<String, Void, Boolean> {
From source file com.data.CheckForDataUpdateTask.java
/** * Created by fbaue on 12/30/14. */ public class CheckForDataUpdateTask extends AsyncTask { private Bus bus;
From source file com.mark.SimpleApp.SimpleAsyncTask.java
public class SimpleAsyncTask extends AsyncTask<Void, Integer, String> { TextView viewToUpdateWithResult; public SimpleAsyncTask(TextView viewToUpdateWithResult) { this.viewToUpdateWithResult = viewToUpdateWithResult; }
From source file com.thingsee.tracker.REST.KiiEditTrackerAsyncTask.java
public class KiiEditTrackerAsyncTask extends AsyncTask<String, Integer, Boolean> { private static final String LOG_TAG = "Tracker"; private HttpClient mHttpClient; private String mAppId;
From source file com.sepgil.ral.DrupalOperationTask.java
/**
* Basic implementation of an operation for a Drupal site.
* The class itself is extends on AsyncTask, so it takes care of performing operations in background.
* @author Sebastian Gilits
*
*/
From source file me.lehrner.newsgroupsndy.presenter.tasks.UpdateGroupListAsyncTask.java
public class UpdateGroupListAsyncTask extends AsyncTask<Server, Void, Boolean> { private String LOG_TAG = this.getClass().getSimpleName(); private GroupRepository mGroupRepository; private WeakReference<GroupPresenter> mGroupPresenterWeakReference; private int mServerId;
From source file com.psaravan.filebrowserview.lib.AsyncTasks.AsyncDeleteTask.java
/** * AsyncTask that deletes the specified file/folder recursively. * * @author Saravan Pantham */ public class AsyncDeleteTask extends AsyncTask<String, Void, Boolean> {