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.baidao.realm_threadexample.WakefulReceivingService.java

public class WakefulReceivingService extends IntentService {

    public WakefulReceivingService() {
        super("WakefulReceivingService");
    }

From source file com.android.google.gcm.GCMBaseIntentService.java

/**
* An application-specific {@link android.app.IntentService} responsible for handling communication from GCM service.
* <p>The abstract methods in this class are called from its worker thread, and hence should run in a
* limited amount of time. If they execute long operations, they should spawn new threads, otherwise
* the worker thread will be blocked.</p>
* <p>Subclasses must provide a public no-arg constructor.</p>

From source file com.example.android.tvleanback.data.FetchVideoService.java

/**
 * FetchVideoService is responsible for fetching the videos from the Internet and inserting the
 * results into a local SQLite database.
 */
public class FetchVideoService extends IntentService {
    private static final String TAG = "FetchVideoService";

From source file com.krayzk9s.imgurholo.services.DownloadService.java

/**
 * Copyright 2013 Kurt Zimmer
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at

From source file com.app.chasebank.push.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.liferay.mobile.push.PushNotificationsService.java

/**
 * @author Bruno Farache
 */
public class PushNotificationsService extends IntentService implements OnPushNotification {

    public PushNotificationsService() {

From source file com.commonsware.android.prognotify.SillyService.java

public class SillyService extends IntentService {
    private static int NOTIFICATION_ID = 1337;

    public SillyService() {
        super("SillyService");
    }

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

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

From source file org.projecthdata.ehr.viewer.service.AbstractSyncService.java

/**
 * Sets up some common elements for syncing data
 * 
 * @author Eric Levine
 *
 */

From source file com.android.fpuna.activityrecognition.DetectedActivitiesIntentService.java

/**
 *  IntentService for handling incoming intents that are generated as a result of requesting
 *  activity updates using
 *  {@link org.harservice.android.api.ActivityRecognitionApi#requestActivityUpdates}.
 */
public class DetectedActivitiesIntentService extends IntentService {