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.asksven.betterbatterystats.services.KbReaderService.java

/**
 * @author sven
 *
 */
public class KbReaderService extends IntentService {
    private static final String TAG = "KbReaderService";

From source file com.appdynamics.demo.gasp.gcm.GCMIntentService.java

/**
 * IntentService responsible for handling GCM messages.
 */
public class GCMIntentService extends IntentService {
    private static final String TAG = "GCMIntentService";

From source file com.adamhurwitz.android.popularmovies.service.YouTubeService.java

public class YouTubeService extends IntentService {
    private final String LOG_TAG = YouTubeService.class.getSimpleName();

    public static final String BASE_URL = "https://api.themoviedb.org/3/movie/";
    public static final String YOUTUBE_BASE_URL = "https://www.youtube.com/watch?v=";
    public String VIDEOS = "/videos";

From source file com.pti.mates.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 jp.co.conit.sss.sn.ex2.service.SendMessageIdIntentService.java

/**
 * ????Service??<br>
 * <br>
 * SamuraiNotification?????userdata???????<br>
 * ???IDSamuraiNotificationServer?????<br>
 * 

From source file com.android.example.notificationshowcase.NotificationService.java

public class NotificationService extends IntentService {

    private static final String TAG = "NotificationService";

    public static final String ACTION_CREATE = "create";
    public static final int NOTIFICATION_ID = 31338;

From source file com.dishcuss.foodie.hub.GCM.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

    private static final String TAG = "RegIntentService";
    private static final String[] TOPICS = { "global" };

    public static final String KEY = "key";

From source file com.networkmanagerapp.SettingBackgroundUploader.java

/**
 * This class is a subclass of IntentService to upload new settings to the router in the background
 * @author rjs07u
 */
public class SettingBackgroundUploader extends IntentService {
    private NotificationManager mNM;

From source file com.alibaba.weex.update.UpdateService.java

public class UpdateService extends IntentService {

    private static final String ACTION_UPDATE = "com.taobao.weex.service.action.UPDATE";
    private static final String EXTRA_URL = "com.taobao.weex.service.extra.URL";
    private final int NOTIFY_ID = 10006024;

From source file com.bcp.bcp.gcm.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

    private static final String TAG = "RegIntentService";
    private static final String[] TOPICS = { "global" };
    private final OkHttpClient client = new OkHttpClient();
    String token;