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 anakiou.com.picontrol.service.OutputIntentService.java

public class OutputIntentService extends IntentService {

    private static final String TAG = "OutputIntentService";

    private ResultReceiver receiver;

From source file com.actinarium.rhythm.control.RhythmNotificationService.java

/**
 * An intent service backing Quick Control notification functionality. Requires {@link Application} to implement {@link
 * RhythmControl.Host} to access the applications {@link RhythmControl} singleton instance
 *
 * @author Paul Danyliuk
 */

From source file eu.codebits.plasmas.services.PollingService.java

/**
 *
 * @author rcarmo
 */
public class PollingService extends IntentService {

From source file com.renard.ocr.help.OCRLanguageInstallService.java

public class OCRLanguageInstallService extends IntentService {

    protected static final String ACTION_INSTALL_COMPLETED = "com.renard.ocr.ACTION_OCR_LANGUAGE_INSTALLED";
    protected static final String ACTION_INSTALL_FAILED = "com.renard.ocr.ACTION_INSTALL_FAILED";
    protected static final String EXTRA_OCR_LANGUAGE = "ocr_language";
    protected static final String EXTRA_OCR_LANGUAGE_DISPLAY = "ocr_language_display";

From source file com.dgsd.android.ShiftTracker.Service.NotificationService.java

/**
 * @author Daniel Grech
 */
public class NotificationService extends IntentService {
    public static final String TAG = NotificationService.class.getSimpleName();

From source file br.com.epitrack.healthycup.gcm.GCMIntentService.java

public class GCMIntentService extends IntentService {
    public static final int NOTIFICATION_ID = 1;
    private NotificationManager mNotificationManager;
    NotificationCompat.Builder builder;
    private static final String TAG = "SaudeNaCopae";

From source file fr.julienvermet.bugdroid.service.ProductsIntentService.java

public class ProductsIntentService extends IntentService {

    private static final String QUERY = "query";
    private static final String INSTANCES_ID = "instances_id";
    private static final String ACCOUNTS_ID = "accounts_id";
    public static final String FORCE_RELOAD = "forceReload";

From source file com.logicdrop.fordchallenge.api.services.IterisService.java

public class IterisService extends IntentService implements IterisInterface {
    /**
     * Retrieve measurements operation
     */
    public static final String RETRIEVE_MEASUREMENTS = "retrieveMeasurements";

From source file com.alexforprog.spareparts.GCM.GcmIntentService.java

/**
 * This {@code IntentService} does the actual handling of the GCM message.
 * {@code GcmBroadcastReceiver} (a {@code WakefulBroadcastReceiver}) holds a
 * partial wake lock for this service while the service does its work. When the
 * service is finished, it calls {@code completeWakefulIntent()} to release the
 * wake lock.

From source file com.networkmanagerapp.RestartWifi.java

/**
 * This class is a subclass of IntentService that restarts WIFI on the router in the background
 * @author rjs07u
 *
 */
public class RestartWifi extends IntentService {