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 services.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

From source file gcm.play.android.samples.com.gcmquickstart.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

    private static final String SERVER_URL = "http://192.168.43.37:3000/api/users/regist";

From source file com.derekma.videogallery.gcm.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

    public RegistrationIntentService() {

From source file com.commonsware.android.documents.consumer.DurablizerService.java

public class DurablizerService extends IntentService {
    public DurablizerService() {
        super("DurablizerService");
    }

    @Override

From source file com.codelyst.ccm.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

    private static final String TAG = "RegIntentService";
    private static final String[] TOPICS = { "global" };
    public static final String GCM_SENDER_META_DATA_KEY = "gcm_sender_id";
    public static final String SENT_TOKEN_TO_SERVER = "sendTokenToServer";

From source file com.android.mail.NotificationActionIntentService.java

/**
 * Processes notification action {@link Intent}s that need to run off the main thread.
 */
public class NotificationActionIntentService extends IntentService {
    private static final String LOG_TAG = "NotifActionIS";

From source file com.andresrcb.gcmtest.LoggingService.java

/**
 * Service used to receive logs, persist them to a file and forward them to the system logger.
 * The logs from the file are displayed in a view inside the main activity.
 */
public class LoggingService extends IntentService {
    public static final String LOG_TAG = "GcmDemo";

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

public class ReviewService extends IntentService {
    private final String LOG_TAG = ReviewService.class.getSimpleName();
    public static final String BASE_URL = "http://api.themoviedb.org/3/movie/";
    public static final String KEY_PARAMETER = "api_key";
    public static final String KEY_CODE = "81696f0358507756b5119609b0fae31e";

From source file charlyn23.c4q.nyc.projectx.map.GeofenceIntentService.java

public class GeofenceIntentService extends IntentService {
    protected static final String GEOFENCE_NAME = "Geofence IntentService";

    public GeofenceIntentService() {
        super(GEOFENCE_NAME);
    }

From source file com.clanofthecloud.cloudbuilder.pushnotifications.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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