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 jp.co.conit.sss.sn.ex1.service.SendMessageIdIntentService.java

/**
 * IDSamuraiNotificationServer???Service??<br>
 * 
 * @author conit
 */
public class SendMessageIdIntentService extends IntentService {

From source file com.android.calendar.alerts.DismissAlarmsService.java

/**
 * Service for asynchronously marking fired alarms as dismissed.
 */
public class DismissAlarmsService extends IntentService {
    private static final String[] PROJECTION = new String[] { CalendarAlerts.STATE, };
    private static final int COLUMN_INDEX_STATE = 0;

From source file com.consumer.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 net.zionsoft.obadiah.model.utils.AppUpdateChecker.java

public class AppUpdateChecker extends IntentService {
    public static void check(Context context) {
        context.startService(new Intent(context, AppUpdateChecker.class));
    }

    public AppUpdateChecker() {

From source file com.liferay.alerts.service.PushNotificationService.java

/**
 * @author Bruno Farache
 */
public class PushNotificationService extends IntentService {

    public PushNotificationService() {

From source file com.commonsware.android.foredown.Downloader.java

public class Downloader extends IntentService {
    public static final String ACTION_COMPLETE = "com.commonsware.android.downloader.action.COMPLETE";
    private static int NOTIFY_ID = 1337;
    private static int FOREGROUND_ID = 1338;

    public Downloader() {

From source file br.com.recidev.gamethis.util.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.imobilize.blogposts.gcmnotifications.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.gdglab.iot.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 ro.decode.drivenanalytics.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

    public RegistrationIntentService() {