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.pinplanet.pintact.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.zadrox.dota2esportticker.service.ReminderAlarmService.java

/**
 * Created by Acco on 11/12/2014.
 */
public class ReminderAlarmService extends IntentService {

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

From source file org.ntpsync.service.NtpSyncService.java

public class NtpSyncService extends IntentService {

    // extras that can be given by intent
    public static final String EXTRA_MESSENGER = "messenger";
    public static final String EXTRA_ACTION = "action";
    public static final String EXTRA_DATA = "data";

From source file com.QuarkLabs.BTCeClient.services.CheckTickersService.java

public class CheckTickersService extends IntentService {
    private static final String BASE_URL = "https://btc-e.com/api/3/ticker/";
    private final static int PANIC_BUY_TYPE = 0;
    private final static int PANIC_SELL_TYPE = 1;
    private final static int STOP_LOSS_TYPE = 2;
    private final static int TAKE_PROFIT_TYPE = 3;

From source file at.ac.uniklu.mobile.sportal.notification.GCMCampusService.java

/**
 * Service to (un)register the device on the campus server.
 *  
 * This service is existing to be able to (un)register from everywhere in the 
 * application without the need of messing around with threads.
 */

From source file com.tcs.geofenceplugin.GeofenceTransitionsIntentService.java

public class GeofenceTransitionsIntentService extends IntentService {

    protected static final String TAG = "komal3";
    String gcmid = "";
    String tokenid = "";

From source file com.owncloud.activity.Downloader.java

public class Downloader extends IntentService {
    public static final String EXTRA_MESSENGER = "com.sufalamtech.downloadmanager.downloader.EXTRA_MESSENGER";
    private HttpClient client = null;

    Intent i;

From source file gxu.software_engineering.market.android.service.FetchService.java

/**
 * ??
 * 
 * @author longkai()
 * @email  im.longkai@gmail.com
 * @since  2013-6-23

From source file org.projecthdata.weight.service.SyncService.java

public class SyncService extends IntentService {
    private OrmManager ormManager = null;
    private ConnectionRepository connectionRepository = null;
    private DateTimeFormatter dateFormatter = ISODateTimeFormat.dateTime();
    private static final String NARRATIVE = "Body weight";
    private static final String CODE = "27113001";

From source file org.transdroid.service.UpdateService.java

/**
 * A service that checks if a new version of the app or the search module is available.
 * 
 * @author erickok
 */
public class UpdateService extends IntentService {