List of usage examples for android.app IntentService subclass-usage
From source file com.miz.service.TraktMoviesSyncService.java
public class TraktMoviesSyncService extends IntentService { private ArrayList<Movie> mMovies; private ArrayList<String> mTmdbIds; private HashSet<String> mMovieCollection, mWatchedMovies, mMovieFavorites, mWatchlist; private NotificationCompat.Builder mBuilder;
From source file com.balch.mocktrade.services.OrderService.java
public class OrderService extends IntentService { private static final String TAG = OrderService.class.getName(); public OrderService() { super(OrderService.class.getName()); }
From source file biz.atelecom.communicator.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { public static final String ARG_NUMBER = "number"; private static final String TAG = "MyApp"; private static final String[] TOPICS = { "global" };
From source file com.magnet.mmx.client.MMXWakeupIntentService.java
/** * The service that handles ALL wakeups for the MMXClient (GCM and timer-based) */ public final class MMXWakeupIntentService extends IntentService { private static final String TAG = MMXWakeupIntentService.class.getSimpleName(); private static int sNoteId = 10;
From source file org.cgiar.ilri.odk.pull.backend.services.DeleteFormDataService.java
/** * Created by Jason Rogena j.rogena@cgiar.org on 11th July 2014. * This service deletes external item sets and data from the SQLite database for the specified form */ public class DeleteFormDataService extends IntentService {
From source file com.ultramegatech.ey.UpdateService.java
/** * This background service checks for and applies data updates. * * @author Steve Guidetti */ public class UpdateService extends IntentService {
From source file org.c99.wear_imessage.RemoteInputService.java
public class RemoteInputService extends IntentService { public static final String ACTION_REPLY = "org.c99.wear_imessage.ACTION_REPLY"; public RemoteInputService() { super("RemoteInputService"); }
From source file com.xeon.amar.sunshine.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 com.example.week04.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.example.android.sunshine.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();