List of usage examples for android.app IntentService subclass-usage
From source file com.android.tripgenie.auto.MessagingService.java
public class MessagingService extends IntentService { private static final String TAG = MessagingService.class.getName(); /** * The Action that indicates that a new message notification * should be sent by this Service.
From source file com.nadmm.airports.aeronav.AeroNavService.java
public abstract class AeroNavService extends IntentService { public static final String ACTION_GET_AFD = "flightintel.intent.action.GET_AFD"; public static final String ACTION_CHECK_AFD = "flightintel.intent.action.CHECK_AFD"; public static final String ACTION_GET_CHARTS = "flightintel.intent.action.GET_CHARTS"; public static final String ACTION_CHECK_CHARTS = "flightintel.intent.action.CHECK_CHARTS";
From source file com.github.opengarageapp.GarageService.java
public abstract class GarageService extends IntentService { public static final String AUTH_TOKEN = "AUTH_TOKEN"; public static final String INTENT_TOGGLE1 = "com.blogspot.ryanfx.garage-toggle-result1"; public static final String INTENT_CLOSE1 = "com.blogspot.ryanfx.garage-close-result1"; public static final String INTENT_STATE1 = "com.blogspot.ryanfx.garage-state-result1"; public static final String INTENT_TOGGLE2 = "com.blogspot.ryanfx.garage-toggle-result2";
From source file br.com.awa.mylottery.gcm.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public RegistrationIntentService() {
From source file bhtech.com.cabbytaxi.services.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.csform.android.uiapptemplate.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 bhtech.com.cabbydriver.services.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public RegistrationIntentService() {
From source file org.ohmage.mobility.location.LocationListenerIntentService.java
/** * Service that receives location updates. It receives updates * in the background, even if the main Activity is not visible. */ public class LocationListenerIntentService extends IntentService {
From source file com.liferay.alerts.receiver.PushNotificationIntentService.java
/** * @author Bruno Farache */ public class PushNotificationIntentService extends IntentService { public PushNotificationIntentService() {
From source file com.crazymike.service.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = RegistrationIntentService.class.getSimpleName(); private static final String[] TOPICS = { "global" }; public RegistrationIntentService() {