List of usage examples for android.app IntentService subclass-usage
From source file com.amazon.rvspeedtest.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.doctoror.fuckoffmusicplayer.presentation.media.MediaManagerService.java
/** * Service for managing media */ public final class MediaManagerService extends IntentService { private static final String TAG = "MediaManagerService";
From source file com.aimfire.gallery.service.SamplesDownloader.java
/** * downloads samples - if sample is a movie, download its preview frame, if it is * a photo, download the photo itself */ public class SamplesDownloader extends IntentService { private static final String TAG = "SamplesDownloader";
From source file com.asalfo.wiulgi.service.UtilityService.java
/** * A utility IntentService, used for a variety of asynchronous background * operations that do not necessarily need to be tied to a UI. */ public class UtilityService extends IntentService { private static final String TAG = UtilityService.class.getSimpleName();
From source file com.example.rafa.sunshine.app.service.SunshineService.java
public class SunshineService extends IntentService { private ArrayAdapter<String> mForecastAdapter; public static final String LOCATION_QUERY_EXTRA = "lqe"; private final String LOG_TAG = SunshineService.class.getSimpleName(); public SunshineService() {
From source file alaindc.crowdroid.SendIntentService.java
/** * An {@link IntentService} subclass for handling asynchronous task requests in * a service on a separate handler thread. */ public class SendIntentService extends IntentService {
From source file com.daiv.android.twitter.services.TrimDataService.java
public class TrimDataService extends IntentService { SharedPreferences sharedPrefs; public static final int TRIM_ID = 161;
From source file com.abid_mujtaba.bitcoin.tracker.services.FetchPriceService.java
/** * This is the Service that runs in the background and fetches the Bitcoin prices from the coinbase * backend after every specified interval of time. */ public class FetchPriceService extends IntentService {
From source file com.example.wojtekswiderski.woahpaper.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 br.ufc.quixada.dsdm.myapplicationtestemulttabs.googleGCM.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public static final String LOG = "LOG";