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.scanqr.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 org.sigmond.net.AsyncHttpTask.java

/**
 * Asynchronous Http request task. Performs a request and processes response in a separate thread.
 * Stores response in an HttpRequestInfo object.
 *
 */
public class AsyncHttpTask extends AsyncTask<HttpRequestInfo, Integer, HttpRequestInfo> {

From source file com.miz.functions.TmdbTrailerSearch.java

/**
 * Looks for trailers on TMDb for a given movie and starts playback of the first found trailer.
 * If none are found, it'll attempt to look on YouTube using a {@link YoutubeTrailerSearch}.
 * @author Michell
 *
 */

From source file com.hdezninirola.auth.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 org.jssec.android.https.imagesearch.HttpsImageSearch.java

public abstract class HttpsImageSearch extends AsyncTask<String, Void, Object> {

    @Override
    protected Object doInBackground(String... params) {

        // HttpClient2?GET????????finally?shutdown?

From source file com.smashedin.facebook.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 com.example.test_fb_api.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 com.whp.android.http.RequestTask.java

public class RequestTask extends AsyncTask<String, String, String> {

    @Override
    protected String doInBackground(String... uri) {
        HttpClient httpclient = new DefaultHttpClient();
        HttpResponse response;

From source file jieehd.villain.updater.appUpdates.java

public class appUpdates extends AsyncTask {
    final static String URL = "http://dl.dropbox.com/u/44265003/update.json";

    Context mContext;
    HttpClient client;
    JSONObject json;

From source file com.sound.app.auth.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";