List of usage examples for android.app IntentService subclass-usage
From source file com.pindroid.service.AccountService.java
public class AccountService extends IntentService { private AccountManager mAccountManager; public AccountService() { super("AccountService");
From source file com.boltarstudios.lok.GCMIntentService.java
/** * This class manages Google Cloud Messaging push notifications and CloudQuery * subscriptions. */ public class GCMIntentService extends IntentService {
From source file com.cloudbees.gasp.gcm.GCMIntentService.java
/** * IntentService responsible for handling GCM messages. */ public class GCMIntentService extends IntentService { private static final String TAG = "GCMIntentService";
From source file com.cygnus.honda.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.dealbreaker.cloud.backend.GCMIntentService.java
/** * This class manages Google Cloud Messaging push notifications and CloudQuery * subscriptions. */ public class GCMIntentService extends IntentService {
From source file com.alchemiasoft.book.service.SuggestionService.java
/** * IntentService that takes care of suggesting the user to buy a book that he doesn't already own. * <p/> * Created by Simone Casagranda on 27/12/14. */ public class SuggestionService extends IntentService {
From source file com.ankh.calendar.alerts.DismissAlarmsService.java
/** * Service for asynchronously marking fired alarms as dismissed. */ public class DismissAlarmsService extends IntentService { private static final String TAG = "DismissAlarmsService"; public static final String SHOW_ACTION = "com.ankh.calendar.SHOW";
From source file com.amlcurran.messages.telephony.SmsManagerOutputPort.java
public class SmsManagerOutputPort extends IntentService { public static final String TAG = SmsManagerOutputPort.class.getSimpleName(); public static final String ACTION_SEND_REQUEST = "send_request"; private static final String ACTION_RESEND = "resent";
From source file org.wso2.app.catalog.services.AppCatalogService.java
/** * This is the service class which exposes all the application management related data provider services * to other applications. */ public class AppCatalogService extends IntentService {
From source file com.android.my.calendar.alerts.DismissAlarmsService.java
/** * Service for asynchronously marking fired alarms as dismissed. */ public class DismissAlarmsService extends IntentService { private static final String TAG = "DismissAlarmsService"; public static final String SHOW_ACTION = "com.android.calendar.SHOW";