List of usage examples for android.os AsyncTask subclass-usage
From source file com.ibm.android.asynctask.AsyncServiceTask.java
public abstract class AsyncServiceTask extends AsyncTask<String, Void, String> { private TaskReceiver _tr = null; private String _response; private String _serviceID;
From source file fr.bde_eseo.eseomega.version.AsyncCheckVersion.java
/** * Created by Franois L. on 10/01/2016. * Permet de vrifier en tche asynchrone si l'application dispose bien de la dernire version disponible. */ public class AsyncCheckVersion extends AsyncTask<String, String, String> {
From source file me.ziccard.secureit.async.upload.PeriodicPositionUploaderTask.java
public class PeriodicPositionUploaderTask extends AsyncTask<Void, Void, Void> implements LocationListener { private static final double INVALID_VALUE = Double.MAX_VALUE; /** * In case 3G and WIFI are turned off we start the upload
From source file com.sudhirkhanger.app.popularmovies.FetchTasks.FetchReviews.java
/** * fetches reviews from themoviedb.org */ public class FetchReviews extends AsyncTask<String, Void, ArrayList<Review>> {
From source file com.plnyyanks.frcnotebook.datafeed.EventListFetcher.java
/**
* File created by phil on 2/18/2014.
* Copyright 2014, Phil Lopreiato
* This file is part of FRC Notebook.
* FRC Notebook is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
* FRC Notebook is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
From source file com.dimasdanz.kendalipintu.devicestatusmodel.DeviceStatusLoadData.java
public class DeviceStatusLoadData extends AsyncTask<Void, Void, String> { JSONParser jsonParser = new JSONParser(); private DeviceStatusLoadDataListener mListener; private Activity activity;
From source file com.shafiq.myfeedle.core.BitmapDownloadTask.java
public class BitmapDownloadTask extends AsyncTask<String, Void, Bitmap> { private final WeakReference<ImageView> mImageViewReference; private final HttpClient mHttpClient; public BitmapDownloadTask(ImageView imageView, HttpClient httpClient) {
From source file com.dimasdanz.kendalipintu.logmodel.LogLoadDetail.java
public class LogLoadDetail extends AsyncTask<String, Void, List<LogModel>> { JSONParser jsonParser = new JSONParser(); List<LogModel> detail = new ArrayList<LogModel>(); private LogLoadDetailListener mListener; private Activity activity;
From source file com.glabs.homegenie.client.eventsource.EventSourceTask.java
/** * Created by Gene on 29/04/14. */ public class EventSourceTask extends AsyncTask<String, Void, Void> implements EventSourceNotification { private Exception exception;
From source file de.thecamper.android.androidtools.UpdateChecker.java
/**
* Checks if there is an update of the app from the internet in an asynchronous
* task
*
* As param there is needed the URL of the version-file and the one of the app
* to download There are needed the strings R.string.versionURL and