List of usage examples for android.app IntentService subclass-usage
From source file br.com.imovelhunter.imovelhunterwebmobile.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.nadmm.airports.wx.NoaaService.java
protected final String AWC_HOST = "aviationweather.gov"; protected final String ADDS_DATASERVER_PATH = "/adds/dataserver_current/httpparam"; public static final String STATION_ID = "STATION_ID"; public static final String STATION_IDS = "STATION_IDS";
From source file net.olejon.mdapp.NotificationsFromSlvIntentService.java
public class NotificationsFromSlvIntentService extends IntentService { public static final int NOTIFICATION_ID = 2; public NotificationsFromSlvIntentService() { super("NotificationsFromSlvIntentService"); }
From source file com.manning.androidhacks.hack046.service.MsgService.java
public class MsgService extends IntentService { private static final String TAG = MsgService.class.getCanonicalName(); public static final String MSG_RECEIVE = "msg_receive"; public static final String MSG_DELETE = "msg_delete"; public static final String MSG_REPLY = "msg_reply";
From source file org.jnegre.android.osmonthego.service.ExportService.java
public class ExportService extends IntentService { private final static String TAG = "ExportService"; private final static String ACTION_EXPORT_OSM = "org.jnegre.android.osmonthego.service.action.EXPORT_OSM"; private final static String EXTRA_INCLUDE_ADDRESS = "org.jnegre.android.osmonthego.service.extra.INCLUDE_ADDRESS"; private final static String EXTRA_INCLUDE_FIXME = "org.jnegre.android.osmonthego.service.extra.INCLUDE_FIXME";
From source file gov.wa.wsdot.android.wsdot.service.CamerasSyncService.java
public class CamerasSyncService extends IntentService { private static final String DEBUG_TAG = "CamerasSyncService"; private static final String CAMERAS_URL = "http://data.wsdot.wa.gov/mobile/Cameras.js.gz"; private String[] projection = { Caches.CACHE_LAST_UPDATED };
From source file gov.wa.wsdot.android.wsdot.service.TravelTimesSyncService.java
public class TravelTimesSyncService extends IntentService { private static final String DEBUG_TAG = "TravelTimesSyncService"; private static final String TRAVEL_TIMES_URL = "http://data.wsdot.wa.gov/mobile/TravelTimes.js.gz"; public TravelTimesSyncService() {
From source file alaindc.crowdroid.PositionIntentService.java
public class PositionIntentService extends IntentService implements GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener, LocationListener { // LogCat tag private static final String TAG = MainActivity.class.getSimpleName();
From source file gov.wa.wsdot.android.wsdot.service.HighwayAlertsSyncService.java
public class HighwayAlertsSyncService extends IntentService { private static final String DEBUG_TAG = "HighwayAlertsSyncService"; private static final String HIGHWAY_ALERTS_URL = "http://data.wsdot.wa.gov/mobile/HighwayAlerts.js"; private String[] projection = { Caches.CACHE_LAST_UPDATED };
From source file net.olejon.mdapp.MessageIntentService.java
public class MessageIntentService extends IntentService { private static final int NOTIFICATION_ID = 1; public MessageIntentService() { super("MessageIntentService"); }