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.moarub.util.UrlDeshortener.java

public class UrlDeshortener extends AsyncTask<String, Void, DeshorteningResult> {
    private UrlDeshortenerListener fListener;
    private String fUrlTo;
    private int fRedirects;
    private boolean fAsync;

From source file com.infosupport.service.LPRServiceCaller.java

/**
 * The LPRServiceCaller does a call to the OpenANPR api to find the licenses in
 * a picture.
 * 
 * @author Mike
 * @version 2.1

From source file net.vivekiyer.GAL.ConnectionChecker.java

/**
 * @author Vivek Iyer
 *
 * This class is a helper class that checks if the settings provided by the user are valid
 * and correspond to a valid Exchange server. It does this by querying the Exchange server for
 * OPTIONS (via the OPTIONS command) and gets the Active Sync protocol version supported by the server

From source file com.joefernandez.irrduino.android.remote.HttpCommandTask.java

/** Async Task code (for Generic HTML requests) 
 * extend this class and add an onPostExecute() method
 * to receive and process the returned string.
 *        
 * <pre>
 * protected void onPostExecute(String result) {

From source file com.grinnellplans.plandroid.PlanFetchTask.java

public class PlanFetchTask extends AsyncTask<String, Void, String> {
    private HttpContext _httpContext;
    private SessionService _ss;
    private SessionService.PlanFetchedCallback _callback;

    public PlanFetchTask(HttpContext clientContext, SessionService sessionService,

From source file asu.edu.msse.gpeddabu.moviedescriptions.AsyncLibraryConnect.java

public class AsyncLibraryConnect extends AsyncTask<MethodInformation, Integer, MethodInformation> {
    @Override
    protected MethodInformation doInBackground(MethodInformation... aRequest) {
        try {
            String result = downloadUrl(aRequest[0].urlString);
            aRequest[0].resultAsJson = result;

From source file mobisocial.musubi.util.HTTPDownloadTextFileTask.java

public class HTTPDownloadTextFileTask extends AsyncTask<String, Void, String> {
    @Override
    public String doInBackground(String... urls) {
        String response = "";
        for (String url : urls) {
            DefaultHttpClient client = new DefaultHttpClient();

From source file com.etime.TimeCardAsyncTask.java

/**
 * User: dpayne2
 * Date: 1/5/12
 * Time: 12:02 PM
 */
public class TimeCardAsyncTask extends AsyncTask<Void, Integer, Boolean> {

From source file net.benmoran.affectsampler.SyncTask.java

public class SyncTask extends AsyncTask<SyncParams, Void, SyncResult> {

    private static final String TAG = "SyncTask";
    private final SyncCaller mCaller;

    public SyncTask() {

From source file com.optimusinfo.elasticpath.cortex.checkout.AsyncTaskSelectCheckOutOption.java

/**
 * This class executes the select option request
 * 
 * @author Optimus
 * 
 */