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.gauth.GAuthTask.java

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

From source file com.hdezninirola.fantasywithdrawer.utils.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.structr.android.restclient.StructrConnector.java

/**
 * The base class for all asynchronous connectors in this package. Instances of
 * this class use the default shared preferences of the given activity to obtain
 * server URL, user name and password that are used for connecting to the structr
 * REST server. The keys used for these values are "Server", "UserName" and
 * "Password".

From source file com.vrem.wifianalyzer.vendor.model.RemoteCall.java

class RemoteCall extends AsyncTask<String, Void, String> {
    static final String MAC_VENDOR_LOOKUP = "http://api.macvendors.com/%s";

    @Override
    protected String doInBackground(String... params) {
        if (params == null || params.length < 1 || StringUtils.isBlank(params[0])) {

From source file org.jssec.android.https.privatecertificate.PrivateCertificateHttpsGet.java

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

    private Context mContext;

    public PrivateCertificateHttpsGet(Context context) {
        mContext = context;

From source file com.hinj.app.google.plus.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.vn.apksfull.task.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.grobox.blitzmail.AsyncMailTask.java

public class AsyncMailTask extends AsyncTask<Void, Void, Boolean> {
    private SendActivity activity;
    private Properties props;
    private Exception e;

    private JSONObject mail;

From source file android.hawkencompanionapp.asynctasks.LoadMechInfoTask.java

/**
 * Created by Phillip Adam Nash on 14/08/2014.
 */
public class LoadMechInfoTask extends AsyncTask<Void, Void, Void> {

    private AsyncTaskUpdate mAsyncTaskUpdate;

From source file com.jelly.music.player.AsyncTasks.AsyncCopyMoveTask.java

public class AsyncCopyMoveTask extends AsyncTask<String, Void, Boolean> {

    private Context mContext;
    private ProgressDialog pd;
    private FilesFoldersFragment mFragment;
    private boolean mShouldMove;