List of usage examples for android.app IntentService subclass-usage
From source file com.adkdevelopment.earthquakesurvival.ui.geofence.GeofenceService.java
/** * Sends * Created by karataev on 4/4/16. */ public class GeofenceService extends IntentService {
From source file com.radioactiveyak.location_best_practices.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.goliathonline.android.kegbot.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 name.gumartinm.weather.information.notification.NotificationIntentService.java
public class NotificationIntentService extends IntentService { public NotificationIntentService() { super("NIS-Thread"); }
From source file eu.codeplumbers.cosi.services.CosiLoyaltyCardService.java
/** * Created by thor on 10/29/16. */ public class CosiLoyaltyCardService extends IntentService {
From source file ca.zadrox.dota2esportticker.service.UpdateMatchService.java
/** * Created by Acco on 11/13/2014. */ public class UpdateMatchService extends IntentService { private static final String TAG = UpdateMatchService.class.getSimpleName();
From source file com.andrada.sitracker.tasks.ImportAuthorsTask.java
@SuppressLint("Registered") @EService public class ImportAuthorsTask extends IntentService { public static final String AUTHOR_LIST_EXTRA = "authorsList"; private final static int NOTIFICATION_ID = 628986143;
From source file com.artech.android.gcm.GcmIntentService.java
public class GcmIntentService extends IntentService { public GcmIntentService() { super("GcmIntentService"); } public static final String TAG = "GCM Client Service";
From source file com.battlelancer.seriesguide.api.SeriesGuideExtension.java
/**
* Base class for a SeriesGuide extension. Extensions are a way for other apps to
* feed actions (represented through {@linkplain Action actions}) for media items to SeriesGuide.
* Actions may for example launch other apps or just display interesting information related to a
* media item. Extensions are specialized {@link IntentService} classes.
*
From source file org.openchaos.android.fooping.service.PingService.java
public class PingService extends IntentService { private static final String tag = "PingService"; private SharedPreferences prefs; private LocationManager lm; private WifiManager wm;