List of usage examples for android.app IntentService subclass-usage
From source file com.appbase.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.commonsware.android.hcnotify.SillyService.java
public class SillyService extends IntentService { private static int NOTIFICATION_ID = 1337; public SillyService() { super("SillyService"); }
From source file br.com.viniciuscr.notification2android.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public RegistrationIntentService() {
From source file au.id.micolous.frogjump.RegistrationIntentService.java
/** * Handles GCM registration. */ public class RegistrationIntentService extends IntentService { private static final String TAG = "RegistrationIS";
From source file ch.christofbuechi.testgcm.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.bengui.baseapp.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 fr.julienvermet.bugdroid.service.CommentIntentService.java
public class CommentIntentService extends IntentService { private static final String QUERY = "query"; private static final String BUG_ID = "bugId"; public static final String MESSENGER = "messenger"; public static final String JSON_DATA = "jsonData";
From source file com.android.nunes.sophiamobile.gsm.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String SENDER_ID = "825260001929"; private static final String[] TOPICS = { "global" };
From source file com.deltadna.android.sdk.notifications.RegistrationIntentService.java
/**
* {@link IntentService} which handles the retrieval of a registration token
* from GCM and setting it on the SDK.
* <p>
* The following entry will need to be added inside the {@code application} tag
* of your manifest file:
From source file com.epykos.epykwaiter.gcm.GcmRegistrationIntentService.java
public class GcmRegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public GcmRegistrationIntentService() {