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 GCMRegistrationService.java

public class GCMRegistrationService extends IntentService {

    private final String SENT_TOKEN = "SENT_TOKEN";

    public GCMRegistrationService() {
        super("GCMRegistrationService");

From source file org.chromium.GcmIntentService.java

public class GcmIntentService extends IntentService {
    String LOG_TAG = "GcmIntentService";

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

From source file GeofenceIntentService.java

public class GeofenceIntentService extends IntentService {

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

From source file com.contactmanager.home.assignmentreminder.AlarmService.java

public class AlarmService extends IntentService {
    private NotificationManager alarmNotificationManager;

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

From source file ph.sakay.gateway.PollingService.java

public class PollingService extends IntentService {

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

From source file ph.sakay.gateway.RoutingService.java

public class RoutingService extends IntentService {

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

From source file no.uka.findmyapp.android.rest.client.RestIntentService.java

/**
 * The Class RestIntentService.
 */

public class RestIntentService extends IntentService {

From source file com.cuddlesoft.norilib.service.ServiceTypeDetectionService.java

/** Service that detects the {@link com.cuddlesoft.norilib.clients.SearchClient} API type for given URL. */
public class ServiceTypeDetectionService extends IntentService {
    /** Result code returned when the service type was detected successfully. */
    public static final int RESULT_OK = 0x00;
    /** Result code returned when there was a problem with network connectivity. */
    public static final int RESULT_FAIL_NETWORK = 0x01;

From source file com.digium.respoke.GcmIntentService.java

public class GcmIntentService extends IntentService {
    public static final int NOTIFICATION_ID = 1;
    public static final String TAG = "GcmIntentService";
    private NotificationManager mNotificationManager;

    public GcmIntentService() {

From source file com.commonsware.android.localcast.NoticeService.java

public class NoticeService extends IntentService {
    public static final String BROADCAST = "com.commonsware.android.localcast.NoticeService.BROADCAST";
    private static Intent broadcast = new Intent(BROADCAST);

    public NoticeService() {
        super("NoticeService");