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 org.catnut.service.ComposeTweetService.java

/**
 * &?
 *
 * @author longkai
 */
public class ComposeTweetService extends IntentService {

From source file cl.apd.ditapp.network.gcm.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

    public RegistrationIntentService() {

From source file ca.appvelopers.mcgillmobile.util.background.CheckerService.java

/**
 * Runs the required checker tasks
 * @author Shabbir Hussain
 * @author Julien Guerinet
 * @since 2.0.0
 */

From source file alaindc.memenguage.RandomIntentService.java

public class RandomIntentService extends IntentService {

    private AlarmManager alarmMgr;
    private PendingIntent alarmIntent;
    private DBManager dbmanager;
    private Cursor crs;

From source file com.locadz.AdUnitAllocationService.java

/** Service that retrieve the ad unit allocations from external source and cache locally in SharedPreference. */
public final class AdUnitAllocationService extends IntentService {

    private static final int CACHE_EXPIRATION_PERIOD = 30 * 60 * 1000; // 30 minutes.

    private final static String PREFS_STRING_TIMESTAMP = "timestamp";

From source file alaindc.crowdroid.SensorsIntentService.java

public class SensorsIntentService extends IntentService implements SensorEventListener {

    private SensorManager mSensorManager;
    private GetAmplitudeTask amplitudeTask;

    private AlarmManager alarmMgr;

From source file com.aimfire.gallery.service.PhotoProcessor.java

@SuppressWarnings("deprecation")
public class PhotoProcessor extends IntentService {
    private static final String TAG = "PhotoProcessor";

    /*
     * firebase analytics

From source file pt.tecnico.childlocator.services.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

    private static final String TAG = "RegIntentService";
    private static final String[] TOPICS = { "global" };
    private SessionManager session;
    private RequestQueue mRequestQueue;

From source file emcewen.websms.services.C2DMRegistrationService.java

public class C2DMRegistrationService extends IntentService {
    private static final String TAG = C2DMRegistrationService.class.getSimpleName();

    public static final String REGISTRATION_ID = "registration_id";
    public static final String PUSH_USERNAME = "emcewen.websms.PUSH_USERNAME";
    public static final String REGISTER_WITH_MYSERVER = "emcewen.websms.SERVER_REGISTER";

From source file tjs.tuneramblr.services.TrackCheckinService.java

/**
 * Service to carry out a track checkin. Pulls metadata and passing along the
 * notification of the success or failure.
 */
public class TrackCheckinService extends IntentService {