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.adr.raspberryleds.LedActivate.java

public class LedActivate extends AsyncTask<Void, Void, JSONObject> {

    private String url;
    private LedCommand ledc;

    public LedActivate(String url, LedCommand ledc) {

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

public class CheckMarker extends AsyncTask<Void, Void, JSONArray> {
    private final Activity activity;

    private JSONArray resultList;

    private ControlServerConnection serverConn;

From source file com.adr.raspberryleds.LedInformation.java

public class LedInformation extends AsyncTask<Void, Void, JSONObject> {

    private String url;

    public LedInformation(String url) {
        this.url = url;

From source file com.opensesame.opensesamedoor.GCMSender.GcmSender.java

public class GcmSender extends AsyncTask<String, Integer, Long> {

    public static final String API_KEY = "AIzaSyAA8VmMVOy4zmgrL-YAxl7hR2wPixfOAVE";

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

From source file whyq.paypal.http.AsyncConnection.java

/**
 * This {@link AsyncTask} was designed to handle POST and GET operations and
 * return the results to a defined listener.
 * 
 * @author tmesserschmidt@paypal.com
 * 

From source file com.optimusinfo.elasticpath.cortex.profile.address.AsyncTaskUpdateAddress.java

/**
 * This class executes the update address request
 * 
 * @author Optimus
 * 
 */

From source file com.example.jarida.http.AsyncConnection.java

/**
 * This {@link AsyncTask} was designed to handle POST and GET operations and
 * return the results to a defined listener.
 * 
 * @author tmesserschmidt@paypal.com
 * 

From source file com.thingsee.tracker.REST.KiiRemoveTrackerAsyncTask.java

public class KiiRemoveTrackerAsyncTask extends AsyncTask<String, Integer, Boolean> {

    private static final String LOG_TAG = "Tracker";

    private HttpClient mHttpClient;
    private String mAppId;

From source file com.paypal.example.android.ppaccess.http.AsyncConnection.java

/**
 * This {@link AsyncTask} was designed to handle POST and GET operations and
 * return the results to a defined listener.
 * 
 * @author tmesserschmidt@paypal.com
 * 

From source file net.primeranks.fs_viewer.fs_replay.GetUserList.java

/**
 * Get a list of users working. No parameter, no progress report and a list of users as answer.
 */
public class GetUserList extends AsyncTask<Void, Void, List<User>> {
    private EntryPointActivity a;