List of usage examples for android.app IntentService subclass-usage
From source file edu.cmu.cs.quiltview.RequestPullingService.java
public class RequestPullingService extends IntentService { private final String LOG_TAG = "Pulling Thread"; public RequestPullingService() { super("RequestPullingService");
From source file org.cvasilak.jboss.mobile.app.service.UploadToJBossServerService.java
public class UploadToJBossServerService extends IntentService { private static final String TAG = UploadToJBossServerService.class.getSimpleName(); private static final int NOTIFICATION_ID = 1337;
From source file com.cloudbees.gasp.service.RESTService.java
/**
* Closely modeled on Neil Goodman's Android REST tutorials
* https://github.com/posco2k8/rest_service_tutorial
* https://github.com/posco2k8/rest_loader_tutorial.git
*
* @author Mark Prichard
From source file com.actinarium.nagbox.service.NagboxService.java
/** * An intent service that handles task operations and alarm management. * * @author Paul Danyliuk */ public class NagboxService extends IntentService {
From source file jahirfiquitiva.iconshowcase.services.NotificationsService.java
public class NotificationsService extends IntentService { private Preferences mPrefs; public NotificationsService() { super("IconShowcase - Notifs Service");
From source file com.eeec.GestionEspresso.gcm.KRegistrationIntentService.java
public class KRegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public KRegistrationIntentService() {
From source file com.svpino.longhorn.MarketCollectorService.java
public class MarketCollectorService extends IntentService { private final static String LOG_TAG = MarketCollectorService.class.getName(); public final static String EXTRA_TICKER = "ticker";
From source file io.indy.drone.service.ScheduledService.java
public class ScheduledService extends IntentService { private static final String TAG = "ScheduledService"; private static final boolean D = true; static void ifd(final String message) {
From source file com.aimfire.gallery.service.MovieProcessor.java
@SuppressWarnings("deprecation") public class MovieProcessor extends IntentService { private static final String TAG = "MovieProcessor"; /* * extracting first keyframe around FIRST_KEYFRAME_TIME_US
From source file org.samcrow.ridgesurvey.data.UploadService.java
/** * A service that uploads observations to a server and deletes observations that have been * uploaded */ public class UploadService extends IntentService {