Example usage for android.os AsyncTask subclass-usage

List of usage examples for android.os AsyncTask subclass-usage

Introduction

In this page you can find the example usage for android.os AsyncTask subclass-usage.

Usage

From source file org.yaoha.OsmNodeUploadTask.java

public class OsmNodeUploadTask extends AsyncTask<OsmNode, Void, String> {
    OsmNode currentNode;
    ApiConnector connector;
    String changesetId;
    OsmNodeUploadListener receiver;

From source file edu.pdx.its.portal.routelandia.ApiFetcher.java

/**
 * This class is designed to be the one-stop-shop for getting JSON results back from the API.
 *
 * Created by joshproehl on 3/2/15.
 */
public class ApiFetcher<T> extends AsyncTask<String, Integer, APIResultWrapper> {

From source file fr.bde_eseo.eseomega.events.tickets.AsyncEventEmail.java

/**
 * Sends the email adress to server
 */
public class AsyncEventEmail extends AsyncTask<String, String, String> {

    private Context context;

From source file com.f16gaming.pathofexilestatistics.RetrieveStatsTask.java

/**
 * Created with IntelliJ IDEA.
 * User: Gamer
 * Date: 2013-02-28
 * Time: 02:48
 * To change this template use File | Settings | File Templates.

From source file at.alladin.rmbt.android.util.CheckIpTask.java

public class CheckIpTask extends AsyncTask<Void, Void, JSONArray> {
    private final RMBTMainActivity activity;

    private JSONArray newsList;

    String lastIp;

From source file fr.gcastel.freeboxV6GeekIncDownloader.ProgressTask.java

/**
 * La classe de notre tche asynchrone 
 * de chargement du flux RSS
 *  
 * @author Gerben
 */

From source file edu.usf.cutr.opentripplanner.android.tasks.BikeRentalLoad.java

/**
 * @author Vreixo Gonzlez
 */

public class BikeRentalLoad extends AsyncTask<String, Integer, BikeRentalStationList> {

From source file es.uma.lcc.tasks.SendUpdateTask.java

/**
 * @author - Carlos Pars Pulido, Oct 2013
 * 
 * AsyncTask to send changes on a picture's permissions.
 * 
 * Copyright (C) 2014  Carlos Pars: carlosparespulido (at) gmail (dot) com

From source file net.alchemiestick.katana.winehqappdb.WineApp.java

public class WineApp extends AsyncTask<HttpUriRequest, Void, String> {
    final int TIMEOUT_MS = 10000;
    AndroidHttpClient client;
    VersionAdapter adapter;
    TextView tv;
    String str;

From source file com.up.testjavasdkdemo.ssltest.HttpHandler.java

public class HttpHandler<T> extends AsyncTask<Object, Object, Object> implements EntityCallBack {

    private final AbstractHttpClient client;
    private final HttpContext context;

    private final StringEntityHandler mStrEntityHandler = new StringEntityHandler();