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.forecast.io.toolbox.NetworkServiceTask.java

/**
 * Created: Christopher Alex Brown on 7/31/13.
 */
public class NetworkServiceTask extends AsyncTask<INetworkRequest, Void, INetworkResponse> {

    private static final int CONNECTION_TIME_OUT = 15 * 1000;

From source file org.bishoph.oxdemo.util.RequestVisibleFolders.java

public class RequestVisibleFolders extends AsyncTask<Object, Object, JSONObject> {

    private HttpClient httpclient;
    private HttpContext localcontext;
    private OXDemo oxdemo;

From source file com.richmond.riddler.AbstractGetNameTask.java

/**
 * Display personalized greeting. This class contains boilerplate code to consume the token but
 * isn't integral to getting the tokens.
 */
public abstract class AbstractGetNameTask extends AsyncTask<Void, Void, Void> {
    public static String getmName() {

From source file com.relurori.sandbox.oauth2.AbstractGetNameTask.java

/**
 * Display personalized greeting. This class contains boilerplate code to consume the token but
 * isn't integral to getting the tokens.
 */
public abstract class AbstractGetNameTask extends AsyncTask<Void, Void, Void> {
    private static final String TAG = "TokenInfoTask";

From source file de.egore911.drilog.tasks.LoadChannelsTask.java

/**
 * Load the available channels from the server
 *
 * @author Christoph Brill <egore911@gmail.com>
 * @since 0.7
 */

From source file com.marvin.webvox.FetchUrlMimeType.java

/**
 * This class is used to pull down the http headers of a given URL so that
 * we can analyse the mimetype and make any correction needed before we give
 * the URL to the download manager. The ContentValues class holds the
 * content that would be provided to the download manager, so that on
 * completion of checking the mimetype, we can issue the download to

From source file com.fidku.geoluks.social.google.AbstractGetNameTask.java

/**
 * Display personalized greeting. This class contains boilerplate code to consume the token but
 * isn't integral to getting the tokens.
 */
public abstract class AbstractGetNameTask extends AsyncTask<Void, Void, Void> {
    private static final String TAG = "TokenInfoTask";

From source file ie.programmer.catcher.browser.AsyncTasks.AsyncDeleteTask.java

/**
 * AsyncTask that deletes the specified file/folder recursively.
 *
 * @author Saravan Pantham
 */
public class AsyncDeleteTask extends AsyncTask<String, Void, Boolean> {

From source file com.google.android.panoramio.GeoCoderTask.java

/**
 * This class provides Geocoding services through the Google Maps APIs.
 */
public class GeoCoderTask extends AsyncTask<String, Void, GeoResponse> {
    // URL prefix to the geocoder
    private static final String GEOCODER_REQUEST_PREFIX_FOR_JSON = "//maps.googleapis.com/maps/api/geocode/json";

From source file com.example.danielleal.androidauthexample.AbstractGetNameTask.java

/**
 * Display personalized greeting. This class contains boilerplate code to consume the token but
 * isn't integral to getting the tokens.
 */
public abstract class AbstractGetNameTask extends AsyncTask<Void, Void, Void> {
    private static final String TAG = "TokenInfoTask";