Example usage for android.app IntentService subclass-usage

List of usage examples for android.app IntentService subclass-usage

Introduction

In this page you can find the example usage for android.app IntentService subclass-usage.

Usage

From source file com.layer8apps.CalendarHandler.java

/************
 *  PURPOSE: This class handles our HTTP requests in the background
 *      so as not to lock up our primary thread and make the program
 *      seemed locked up
 *  AUTHOR: Devin Collins <agent14709@gmail.com>
 *************/

From source file name.gumartinm.weather.information.widget.WidgetIntentService.java

public class WidgetIntentService extends IntentService {
    private static final String WIDGET_PREFERENCES_NAME = "WIDGET_PREFERENCES";

    public WidgetIntentService() {
        super("WIS-Thread");
    }

From source file eu.codeplumbers.cosi.services.CosiExpenseService.java

/**
 * Created by thor on 10/29/16.
 */

public class CosiExpenseService extends IntentService {

From source file net.peterkuterna.android.apps.devoxxsched.service.SyncService.java

/**
 * Background {@link Service} that synchronizes data living in
 * {@link ScheduleProvider}. Reads data from both local {@link Resources} and
 * from remote sources, such as a spreadsheet.
 */
public class SyncService extends IntentService {

From source file eu.codeplumbers.cosi.services.CosiFileService.java

/**
 * Created by thor on 10/29/16.
 */

public class CosiFileService extends IntentService {

From source file net.helff.wificonnector.WifiConnectivityService.java

public class WifiConnectivityService extends IntentService {

    public static final String INTENT_COMMAND = "intent-command";

    public static final String TAG = "WifiConnetivityService";

From source file me.calebjones.blogsite.network.PostDownloader.java

public class PostDownloader extends IntentService {

    public static final String LATEST_URL = "https://public-api.wordpress.com/rest/v1.1/sites/"
            + "calebjones.me/posts/?pretty=true&number=10&fields=ID&order_by=ID&order=desc";
    public static final String POST_URL = "https://public-api.wordpress.com/rest/v1.1/sites/"
            + "calebjones.me/posts/%d/?pretty=true&fields=ID,date,author,content,URL,excerpt,tags,"

From source file com.antew.redditinpictures.library.service.RESTService.java

/**
 * This is based an article by Neil Goodman, I've added the EXTRA_REQUEST_CODE so that callers can
 * have multiple request types
 *
 * @author Neil Goodman
 * @see <a

From source file org.ietf.ietfsched.service.SyncService.java

/**
 * Background {@link Service} that synchronizes data living in
 * {@link ScheduleProvider}. Reads data from both local {@link Resources} and
 * from remote sources, such as a spreadsheet.
 */
public class SyncService extends IntentService {

From source file org.kegbot.app.service.CheckinService.java

/**
 * Checkin service: pings kegbot servers for version/support information.
 *
 * @author mike wakerly (opensource@hoho.com)
 */
public class CheckinService extends IntentService {