List of usage examples for android.app IntentService subclass-usage
From source file com.binarywalllabs.sendit.managers.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.conceptberria.wattion.background.MakeNotification.java
/** * Created by ConceptBerria on 30/09/2014. * Clase hija de {@link IntentService} notifica del peor o mejor precio segn configuracin y actualiza la informacin del precio de la energa. * */ public class MakeNotification extends IntentService {
From source file com.onesignal.NotificationExtenderService.java
public abstract class NotificationExtenderService extends IntentService { public static class OverrideSettings { public NotificationCompat.Extender extender; public Integer androidNotificationId;
From source file com.miz.service.TraktTvShowsSyncService.java
public class TraktTvShowsSyncService extends IntentService { private NotificationCompat.Builder mBuilder; private NotificationManager mNotificationManager; private ArrayList<TvShow> mShows; private ArrayList<TraktTvShow> mLocalCollection, mLocalWatched;
From source file no.firestorm.weathernotificatonservice.WeatherNotificationService.java
/**
* Updates notification if extra intent is INTENT_EXTRA_ACTION_GET_TEMP, for
* updating the notification or INTENT_EXTRA_ACTION_UPDATE_ALARM for setting the
* alarm for the next time the notification should be updated.
*
* Start service for updating notification by:
From source file com.android.transmart.services.PlaceCheckinService.java
/** * Service that notifies the underlying web service to Checkin to the specified venue. * TODO Replace or augment with a Service that performs ratings / reviews / etc. */ public class PlaceCheckinService extends IntentService {
From source file com.tonikorin.cordova.plugin.LocationProvider.LocationService.java
public class LocationService extends IntentService { private static final String TAG = "LocationService"; private final MyLocationResult myLocationResult = new MyLocationResult(); private JSONObject config = null; private Context myContext; public static final String PREFS_NAME = "LocationService";
From source file com.fututel.service.Downloader.java
public class Downloader extends IntentService { private final static String THIS_FILE = "Downloader"; public final static String EXTRA_ICON = "icon"; public final static String EXTRA_TITLE = "title"; public final static String EXTRA_OUTPATH = "outpath";
From source file com.google.android.gms.location.sample.geofencing.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.app.poke.poke.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.