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.handshake.notifications.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

    public RegistrationIntentService() {

From source file hk.edu.cityu.appslab.calmessenger.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 alaindc.crowdroid.GeofenceTransitionsIntentService.java

public class GeofenceTransitionsIntentService extends IntentService {

    protected static final String TAG = "GeofenceTransitionsIS";

    public GeofenceTransitionsIntentService() {
        super(TAG);

From source file com.appdynamics.demo.gasp.service.RestaurantSyncService.java

public class RestaurantSyncService extends IntentService implements IRESTListener {
    private static final String TAG = RestaurantSyncService.class.getName();

    private Uri mGaspRestaurantsUri;

    private void getGaspRestaurantsUriSharedPreferences() {

From source file com.company.millenium.iwannask.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

    public RegistrationIntentService() {

From source file ca.farrelltonsolar.classic.PVOutputService.java

public class PVOutputService extends IntentService {

    PVOutputUploader uploader;
    private Timer pollTimer;

    public PVOutputService() {

From source file org.immopoly.android.api.IS24ApiService.java

public class IS24ApiService extends IntentService {

    public static final String API_RECEIVER = "api_receiver";
    public static final String LAT = "lat";
    public static final String LNG = "lng";
    public static final String NO_FLATS = "no_flats";

From source file com.bosco.noticeboard.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

    private Intent intent;

From source file com.gmail.at.faint545.services.DataQueueService.java

public class DataQueueService extends IntentService {

    public DataQueueService() {
        super("Downloader");
    }

From source file paquete.push_notifications.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {
    private static final String TAG = "RegIntentService";
    //private static final String[] TOPICS = {"global"};

    public RegistrationIntentService() {
        super(TAG);