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.adamhurwitz.android.popularmovies.service.MovieDataService.java

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

From source file com.digitalborder.webappessentials.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 com.example.llh_pc.it_support.gcm.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

From source file de.skubware.opentraining.activity.settings.sync.OpenTrainingSyncService.java

/**
 * A service for syncing OpenTraining with wger.
 *
 */
public class OpenTrainingSyncService extends IntentService {
    /** Indicates that the query is running */

From source file au.com.websitemasters.schools.lcps.push.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

    public RegistrationIntentService() {

From source file camp.pixels.signage.services.PollingService.java

/**
 *
 * @author rcarmo
 */
public class PollingService extends IntentService {

From source file com.example.android.threadsample.RSSPullService.java

/**
 * This service pulls RSS content from a web site URL contained in the incoming Intent (see
 * onHandleIntent()). As it runs, it broadcasts its status using LocalBroadcastManager; any
 * component that wants to see the status should implement a subclass of BroadcastReceiver and
 * register to receive broadcast Intents with category = CATEGORY_DEFAULT and action
 * Constants.BROADCAST_ACTION.

From source file au.com.websitemasters.schools.thornlie.push.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

    public RegistrationIntentService() {

From source file com.bluros.updater.service.DownloadService.java

public class DownloadService extends IntentService
        implements Response.Listener<JSONObject>, Response.ErrorListener {
    private static final String TAG = DownloadService.class.getSimpleName();

    private static final String EXTRA_UPDATE_INFO = "update_info";

From source file com.etime.TimeAlarmService.java

public class TimeAlarmService extends IntentService {
    static final String NAME = "com.etime.TimeAlarmService";
    private static final String TAG = "TimeAlarmService-4321";

    private static volatile PowerManager.WakeLock lockStatic = null;
    private static volatile Context lockContext = null;