List of usage examples for android.os AsyncTask subclass-usage
From source file org.gots.weather.provider.google.GoogleWeatherTask.java
public class GoogleWeatherTask extends AsyncTask<Object, Integer, WeatherConditionInterface> { protected URL url; private Date requestedDay; private boolean force = false;
From source file org.compose.mobilesdk.android.ServerRequestTask.java
public class ServerRequestTask extends AsyncTask<Void, Void, Void> { private URL POSTrequestUrl; private URL PUTrequestUrl; private String request_type; private String header_parameters;
From source file org.aectann.postage.TrackingStatusRefreshTask.java
public class TrackingStatusRefreshTask extends AsyncTask<String, TrackingInfo, String> { private final Context context; /** * @param context
From source file br.ufc.mdcc.benchimage2.util.ExportData.java
/** * @author Philipp */ public final class ExportData extends AsyncTask<Void, Void, Void> { private final String clsName = ExportData.class.getName();
From source file com.example.android.popularmoviesist2.data.FetchMovieTask.java
public class FetchMovieTask extends AsyncTask<String, Void, String[]> { private final String LOG_TAG = FetchMovieTask.class.getSimpleName(); private String orderBy; public Context mContext;
From source file com.iumol.tint.tasks.HistoryBookmarksExportTask.java
public class HistoryBookmarksExportTask extends AsyncTask<Cursor, Integer, String> { private Context mContext; private IHistoryBookmaksExportListener mListener; public HistoryBookmarksExportTask(Context context, IHistoryBookmaksExportListener listener) {
From source file android.hawkencompanionapp.asynctasks.ForgotPasswordTask.java
/** * Created by Phillip Adam Nash on 08/08/2014. */ public class ForgotPasswordTask extends AsyncTask<UserForgottenPassword, Void, Void> { private final String mResetUrl = "https://www.playhawken.com/storm/user/requestPasswordReset.php";
From source file pl.xsolve.verfluchter.tasks.general.RestAsyncTask.java
/**
* An common class for all AsyncTasks that need to use our rest client
* <p/>
* Some more info about the "extends <_, _, _>":
* The 3 Type params mean as follows:
* 1. Params, the type of the parameters sent to the task upon execution.
From source file edu.asu.msse.sgowdru.moviesqldb.MovieGetInfoAsync.java
public class MovieGetInfoAsync extends AsyncTask<String, Void, JSONObject> { JSONObject json = null; //Setting up reader for the stream String readAll(Reader rd) throws IOException {
From source file net.eledge.android.europeana.search.task.RecordTask.java
public class RecordTask extends AsyncTask<String, Void, RecordObject> { private final RecordController recordController = RecordController._instance; private final Activity mActivity;