Example usage for android.app IntentService subclass-usage

List of usage examples for android.app IntentService subclass-usage

Introduction

In this page you can find the example usage for android.app IntentService subclass-usage.

Usage

From source file com.cttapp.bby.mytlc.layer8apps.CalendarHandler.java

/************
 *  PURPOSE: This class handles our HTTP requests in the background
 *      so as not to lock up our primary thread and make the program
 *      seemed locked up
 *  AUTHOR: Devin Collins <agent14709@gmail.com>
 *************/

From source file it.gulch.linuxday.android.services.AlarmIntentService.java

/**
 * A service to schedule or unschedule alarms in the background, keeping the app responsive.
 *
 * @author Christophe Beyls
 */
public class AlarmIntentService extends IntentService {

From source file org.wso2.iot.agent.services.FileUploadService.java

/**
 * The service which is responsible for uploading files.
 */
public class FileUploadService extends IntentService {

    private static final String TAG = FileUploadService.class.getSimpleName();

From source file com.ibox_ucsc.design.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.samknows.measurement.MainService.java

public class MainService extends IntentService {
    private PowerManager.WakeLock wakeLock;
    private TrafficStatsCollector collector = new TrafficStatsCollector();
    private AppSettings appSettings;
    private static boolean isExecuting;
    private static Handler mHandler = null;

From source file org.wso2.iot.agent.services.FileDownloadService.java

/**
 * Service to download files.
 */
public class FileDownloadService extends IntentService {

    private static final String TAG = FileDownloadService.class.getSimpleName();

From source file com.abbiya.broadr.gcm.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 ca.mudar.mtlaucasou.services.SyncService.java

/**
 * Background {@link Service} that synchronizes data living in
 * {@link PlacemarkProvider}. Reads data from remote sources
 */
public class SyncService extends IntentService {
    private static final String TAG = "SyncService";

From source file ca.mudar.parkcatcher.service.SyncService.java

/**
 * Background {@link Service} that synchronizes data living in
 * {@link PlacemarkProvider}. Reads data from remote sources
 */
public class SyncService extends IntentService {
    private static final String TAG = "SyncService";

From source file org.cgiar.ilri.odk.pull.backend.services.FetchFormDataService.java

/**
 * Created by Jason Rogena j.rogena@cgiar.org on 09th July 2014.
 * This class fetches the external data sets for the form
 */
public class FetchFormDataService extends IntentService {