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 bg.phpgcm2.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

    private static final String TAG = "RegIntentService";
    private static final String[] TOPICS = { "global" };

    public RegistrationIntentService() {

From source file com.easytarget.micopi.BatchService.java

/**
 * Based on com.germainz.identiconizer.services.IdenticonCreationService
 */
public class BatchService extends IntentService {

    private static final String LOG_TAG = BatchService.class.getSimpleName();

From source file com.manning.androidhacks.hack043.service.NoBatchService.java

public class NoBatchService extends IntentService {

    public NoBatchService() {
        super(NoBatchService.class.getSimpleName());
    }

From source file com.shinymayhem.radiopresets.ServiceAudioFormat.java

public class ServiceAudioFormat extends IntentService {
    private static final boolean LOCAL_LOGV = ActivityMain.LOCAL_LOGV;
    private static final boolean LOCAL_LOGD = ActivityMain.LOCAL_LOGD;
    private static final String TAG = "ServiceAudioFormat";

    private enum AudioType {

From source file co.org.cut.cut_app.gcm.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

    private static final String TAG = "RegIntentService";
    private static final String[] TOPICS = { "global" };

    private static final String URL_REGISTRO = "http://52.27.16.14/cut/usuarios/registrar";

From source file alaindc.crowdroid.GeofenceIntentService.java

public class GeofenceIntentService extends IntentService implements GoogleApiClient.ConnectionCallbacks,
        GoogleApiClient.OnConnectionFailedListener, ResultCallback<Status> {

    private Intent currentIntent;

    // For Geofencing

From source file gov.wa.wsdot.android.wsdot.service.FerriesTerminalSailingSpaceSyncService.java

public class FerriesTerminalSailingSpaceSyncService extends IntentService {

    private static final String TAG = FerriesTerminalSailingSpaceSyncService.class.getSimpleName();
    private static final String TERMINAL_SAILING_SPACE_URL = "http://www.wsdot.wa.gov/ferries/api/terminals/rest/terminalsailingspace?"
            + "apiaccesscode={API_ACCESS_CODE}";

From source file com.agiledge.keocometemployee.GCM.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

    private static final String TAG = "RegIntentService";
    private static final String[] TOPICS = { "global" };
    private CommenSettings server;
    SharedPreferences sharedPreferences;

From source file com.aware.utils.WebserviceHelper.java

public class WebserviceHelper extends IntentService {

    public static final String ACTION_AWARE_WEBSERVICE_SYNC_TABLE = "ACTION_AWARE_WEBSERVICE_SYNC_TABLE";
    public static final String ACTION_AWARE_WEBSERVICE_CLEAR_TABLE = "ACTION_AWARE_WEBSERVICE_CLEAR_TABLE";

    public static final String EXTRA_TABLE = "table";

From source file com.tcity.android.sync.SyncService.java

public class SyncService extends IntentService {

    @NotNull
    private DB myDB;

    @NotNull