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.kupriyanov.android.apps.gddsched.de.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 net.bespokesystems.android.apps.wicsa2011.de.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 se.leap.bitmaskclient.ProviderAPI.java

/**
 * Implements HTTP api methods used to manage communications with the provider server.
 * <p/>
 * It's an IntentService because it downloads data from the Internet, so it operates in the background.
 *
 * @author parmegv

From source file net.qvex.dommel.data.DommelDataService.java

public class DommelDataService extends IntentService {
    // Android Intent actions

    public static final String MESSAGE_STATUS = "net.qvex.dommel.data.Message.Status";

    public static final String FIELD_EXCEPTION = "net.qvex.dommel.data.Field.Exception";

From source file it.feio.android.omninotes.async.DataBackupIntentService.java

public class DataBackupIntentService extends IntentService implements OnAttachingFileListener {

    public final static String INTENT_BACKUP_NAME = "backup_name";
    public final static String INTENT_BACKUP_INCLUDE_SETTINGS = "backup_include_settings";
    public final static String ACTION_DATA_EXPORT = "action_data_export";
    public final static String ACTION_DATA_IMPORT = "action_data_import";

From source file com.battlelancer.seriesguide.service.NotificationService.java

public class NotificationService extends IntentService {

    private static final String KEY_EPISODE_CLEARED_TIME = "com.battlelancer.seriesguide.episode_cleared_time";

    private static final boolean DEBUG = false;

From source file com.brq.wallet.lt.notification.GcmIntentService.java

public class GcmIntentService extends IntentService {

    private static final String TAG = "GcmIntentService";

    public GcmIntentService() {
        super("GcmIntentService");

From source file biz.bokhorst.bpt.BPTService.java

public class BPTService extends IntentService
        implements LocationListener, GpsStatus.Listener, GoogleApiClient.ConnectionCallbacks {
    // Messages
    public static final int MSG_REPLY = 1;
    public static final int MSG_WAYPOINT = 2;

From source file com.asburymotors.android.disneysocal.service.UtilityService.java

/**
 * A utility IntentService, used for a variety of asynchronous background
 * operations that do not necessarily need to be tied to a UI.
 */
public class UtilityService extends IntentService {
    private static final String TAG = UtilityService.class.getSimpleName();

From source file org.digitalcampus.oppia.service.CourseIntallerService.java

public class CourseIntallerService extends IntentService {

    public static final String TAG = CourseIntallerService.class.getSimpleName();
    public static final String BROADCAST_ACTION = "com.digitalcampus.oppia.COURSEINSTALLERSERVICE";

    public static final String SERVICE_ACTION = "action";