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 com.example.hnreader.Download.java

/**
 * An Async thread for downloading the content
 */
public class Download extends AsyncTask<String, Void, String> {

    protected Context context;

From source file com.cybussolutions.wikki.afri_pay.Networking.CheckAmount.java

/**
 * Created by Hamza Android on 10/14/2016.
 */
public class CheckAmount extends AsyncTask<String, String, String> {

    public String response;

From source file com.moarub.util.PageTitleGetter.java

public class PageTitleGetter extends AsyncTask<String, Void, StringBuilder> {
    private UrlDeshortenerListener fListener;
    private String fURLTo;
    private String fBackupTitle;

    public PageTitleGetter(UrlDeshortenerListener listener) {

From source file com.droidworks.asynctask.AbsTinyUrlAsyncTask.java

/**
 * AsyncTask implementation that performs url transformations using the
 * tinyurl.com api.
 *
 * @author jasonhudgins <jasonleehudgins@gmail.com>
 *

From source file siir.es.adbWireless.AutoConnectTask.java

class AutoConnectTask extends AsyncTask<Void, Void, Void> {

    private String url;

    public AutoConnectTask(String u) {
        this.url = u;

From source file org.starfishrespect.myconsumption.android.tasks.UserUpdater.java

/**
 * Task that retrieves all the data of an user from the server
 * S23Y (2015). Licensed under the Apache License, Version 2.0.
 */
public class UserUpdater extends AsyncTask<Void, UserData, Void> {

From source file be.geecko.openlauncher.net.SuggestionsTask.java

/**
 * This file is part of OpenLauncher for Android
 * Created by geecko on 2/07/14.
 * <p/>
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.

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

public class CheckSyncTask extends AsyncTask<String, Void, JSONArray> {

    // private static final String DEBUG_TAG = "CheckSyncTask";

    private final Activity activity;

From source file de.tud.kitchen.android.NTPTimeReceiver.java

/**
 * 
 * @author Niklas Lochschmidt <niklas.lochschmidt@stud.tu-darmstadt.de>
 *
 */
public class NTPTimeReceiver extends AsyncTask<InetAddress, Integer, Void> {

From source file com.liferay.mobile.android.task.UploadAsyncTask.java

/**
 * @author Bruno Farache
 */
public class UploadAsyncTask extends AsyncTask<JSONObject, Integer, JSONArray> {

    public UploadAsyncTask(Session session, AsyncTaskCallback callback) {