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.example.ronald.tracle.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

    public RegistrationIntentService() {

From source file com.manning.androidhacks.hack021.MyService.java

public class MyService extends IntentService {

    public static final String ACTION = "com.manning.androidhacks.hack021.SERVICE_MSG";
    public static final String MSG_KEY = "MSG_KEY";

    public MyService() {

From source file com.arubadesignweb.app.appoverview.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.example.lista3new.SyncService.java

public class SyncService extends IntentService {
    private static final String TAG = "SyncService";
    public static final String MESSAGE_UPDATE = "MESSAGE_UPDATE";
    public static final String MESSAGE_CONNECTION_FAILED = "MESSAGE_CONNECTION_FAILED";
    public static final String MESSAGE_FILE_TYPE = "fileType";
    public static final String MESSAGE_FILE_NAME = "fileName";

From source file damo.three.ie.prepay.UpdateService.java

/**
 * Service responsible for the background fetch of user usages. Works silently.
 *
 * @author Damien O'Reilly
 */
public class UpdateService extends IntentService {

From source file com.contactlab.clabpush_android_sample.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService implements ConnectionTask.ConnectionTaskListener {

    /**
     * Action bundled as an Intent's extra.
     */
    public static final String EXTRA_ACTION = "Action";

From source file hk.edu.cuhk.ie.iems5722.a2_1155069587.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

    private static final String TAG = "RegIntentService";

    public RegistrationIntentService() {
        super(TAG);

From source file com.daiv.android.twitter.services.SendScheduledTweet.java

public class SendScheduledTweet extends IntentService {
    private static final String TAG = SendScheduledTweet.class.getSimpleName();

    public final static String EXTRA_TEXT = "com.daiv.android.twitter.scheduled.TEXT";

    SharedPreferences sharedPrefs;

From source file gov.wa.wsdot.android.wsdot.service.BorderWaitSyncService.java

public class BorderWaitSyncService extends IntentService {

    private static final String DEBUG_TAG = "BorderWaitSyncService";
    private static final String BORDER_WAIT_URL = "http://data.wsdot.wa.gov/mobile/BorderCrossings.js";

    public BorderWaitSyncService() {

From source file com.android.example.leanback.fastlane.RecommendationsService.java

/**
 * Created by anirudhd on 11/2/14.
 */
public class RecommendationsService extends IntentService {

    private static final String TAG = "RecommendationsService";