List of usage examples for android.app IntentService subclass-usage
From source file eu.codeplumbers.cosi.services.CosiSmsService.java
/** * Created by thor on 10/29/16. */ public class CosiSmsService extends IntentService {
From source file com.underhilllabs.dccsched.service.SyncService.java
/** * Background {@link Service} that synchronizes data living in * {@link ScheduleProvider}. Reads data from both local {@link Resources} and * from remote sources, such as a spreadsheet. */ public class SyncService extends IntentService {
From source file com.google.android.apps.santatracker.presentquest.PlacesIntentService.java
public class PlacesIntentService extends IntentService { private static final String TAG = "PQ(PlacesService)"; private static final String ACTION_SEARCH_NEARBY = "ACTION_SEARCH_NEARBY"; private static final String EXTRA_LAT_LNG = "extra_lat_lng";
From source file org.pixmob.freemobile.netstat.SyncService.java
/** * This background service synchronizes data with a remote server. * * @author Pixmob */ public class SyncService extends IntentService {
From source file com.github.chenxiaolong.dualbootpatcher.switcher.SwitcherService.java
import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.locks.ReentrantReadWriteLock; public class SwitcherService extends ThreadPoolService { private static final String TAG = SwitcherService.class.getSimpleName();
From source file com.google.android.apps.iosched.service.SyncService.java
/** * Background {@link Service} that synchronizes data living in * {@link ScheduleProvider}. Reads data from both local {@link Resources} and * from remote sources, such as a spreadsheet. */ public class SyncService extends IntentService {
From source file com.kuacm.expo2013.service.SyncService.java
/** * Background {@link Service} that synchronizes data living in * {@link ScheduleProvider}. Reads data from both local {@link Resources} and * from remote sources, such as a spreadsheet. */ public class SyncService extends IntentService {
From source file com.lullabot.android.apps.iosched.service.SyncService.java
/** * Background {@link Service} that synchronizes data living in * {@link ScheduleProvider}. Reads data from both local {@link Resources} and * from remote sources, such as a spreadsheet. */ public class SyncService extends IntentService {
From source file com.google.android.apps.iosched2.service.SyncService.java
/** * Background {@link Service} that synchronizes data living in * {@link ScheduleProvider}. Reads data from both local {@link Resources} and * from remote sources, such as a spreadsheet. */ public class SyncService extends IntentService {
From source file com.bangz.smartmute.services.LocationMuteService.java
/**
* An {@link IntentService} subclass for handling asynchronous task requests in
* a service on a separate handler thread.
* <p/>
* TODO: Customize class - update intent actions, extra parameters and static
* helper methods.