List of usage examples for android.app IntentService subclass-usage
From source file net.zionsoft.obadiah.model.notification.PushNotificationRegister.java
public class PushNotificationRegister extends IntentService { public static void register(Context context) { if (GooglePlayServicesUtil.isGooglePlayServicesAvailable(context) != ConnectionResult.SUCCESS) { return; }
From source file br.com.samirrolemberg.instanceidtest.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public final static String SENT_TOKEN_TO_SERVER = "SENT_TOKEN_TO_SERVER";
From source file de.damdi.fitness.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 com.commonsware.android.okhttp3.progress.Downloader.java
public class Downloader extends IntentService { private static int NOTIFY_ID = 1337; private static int FOREGROUND_ID = 1338; private NotificationManager mgr;
From source file br.com.pbldg.cobile.GeofenceTransitionsIntentService.java
/**
* Listener for geofence transition changes.
*
* Receives geofence transition events from Location Services in the form of an Intent containing
* the transition type and geofence id(s) that triggered the transition. Creates a notification
* as the output.
From source file com.bartr.sarmed.bartr.GeofenceTransitionsIntentService.java
/**
* Listener for geofence transition changes.
*
* Receives geofence transition events from Location Services in the form of an Intent containing
* the transition type and geofence id(s) that triggered the transition. Creates a notification
* as the output.
From source file xiaofans.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 ca.etsmtl.applets.etsmobile.service.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public RegistrationIntentService() {
From source file de.micmun.android.workdaystarget.DaysLeftService.java
/**
* Service to handle updates.
*
* @author MicMun
* @version 1.2, 22.05.2014
*/
From source file com.karpenstein.signalmon.NetServerService.java
/** * TODO: Make a properties page where you can set the port number */ public class NetServerService extends IntentService //public class NetServerService extends Service {