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 dwhit.emerapp.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

From source file com.google.android.apps.muzei.SourceSubscriberService.java

public class SourceSubscriberService extends IntentService {
    private static final String TAG = "SourceSubscriberService";

    public SourceSubscriberService() {
        super("SourceSubscriberService");
    }

From source file com.alchemiasoft.book.service.BookActionService.java

/**
 * Service that allows to buy
 * <p/>
 * Created by Simone Casagranda on 28/12/14.
 */
public class BookActionService extends IntentService {

From source file com.macmoim.pang.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_GCM_DATA = Util.SERVER_ROOT + "/gcmData";

From source file com.haha01haha01.harail.DatabaseDownloader.java

public class DatabaseDownloader extends IntentService {
    public static final String FINISHED = "com.haha01haha01.harail.DatabaseDownloader.FINISHED";
    public static final String EXTENDED_SUCCESS = "com.haha01haha01.harail.DatabaseDownloader.EXTENDED_SUCCESS";
    private static final String NAME = "HARAIL_DATABASE_DOWNLOADER";
    private static final String irw_gtfs_server = "gtfs.mot.gov.il";
    private static final int irw_gtfs_port = 21;

From source file edu.mines.letschat.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 com.evandroid.musica.services.BatchDownloaderService.java

public class BatchDownloaderService extends IntentService implements Lyrics.Callback {
    // Sets the amount of time an idle thread will wait for a task before terminating
    private static final int KEEP_ALIVE_TIME = 1;
    // Sets the Time Unit to seconds
    private static final TimeUnit KEEP_ALIVE_TIME_UNIT = TimeUnit.SECONDS;
    // Sets the threadpool size to 8

From source file luan.com.flippit.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 fr.bde_eseo.eseomega.gcmpush.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

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

From source file com.networkmanagerapp.JSONBackgroundDownloaderService.java

/**
 * This class creates an IntentService to download the XML files in a service in the background
 * @author rjs07u
 *
 */
public class JSONBackgroundDownloaderService extends IntentService {