List of usage examples for android.app IntentService subclass-usage
From source file com.sip.pwc.sipphone.service.Downloader.java
public class Downloader extends IntentService { private final static String THIS_FILE = "Downloader"; public final static String EXTRA_ICON = "icon"; public final static String EXTRA_TITLE = "title"; public final static String EXTRA_OUTPATH = "outpath";
From source file com.sonetel.service.Downloader.java
public class Downloader extends IntentService { private final static String THIS_FILE = "Downloader"; public final static String EXTRA_ICON = "icon"; public final static String EXTRA_TITLE = "title"; public final static String EXTRA_OUTPATH = "outpath";
From source file org.ado.minesync.service.UploadDownloadService.java
/**
* Service to upload/download all worlds.
*
* @author andoni
* @since 1.0.0
*/
From source file gov.wa.wsdot.android.wsdot.service.MountainPassesSyncService.java
public class MountainPassesSyncService extends IntentService { private static final String DEBUG_TAG = "MountainPassesSyncService"; @SuppressLint("UseSparseArrays") private static HashMap<Integer, String[]> weatherPhrases = new HashMap<Integer, String[]>(); @SuppressLint("UseSparseArrays")
From source file tw.net.ezcall.service.Downloader.java
public class Downloader extends IntentService { private final static String THIS_FILE = "Downloader"; public final static String EXTRA_ICON = "icon"; public final static String EXTRA_TITLE = "title"; public final static String EXTRA_OUTPATH = "outpath";
From source file com.csipsimple.service.Downloader.java
public class Downloader extends IntentService { private final static String THIS_FILE = "Downloader"; public final static String EXTRA_ICON = "icon"; public final static String EXTRA_TITLE = "title"; public final static String EXTRA_OUTPATH = "outpath";
From source file com.riverspart.location.services.PlaceCheckinService.java
/** * Service that notifies the underlying web service to Checkin to the specified venue. * TODO Replace or augment with a Service that performs ratings / reviews / etc. */ public class PlaceCheckinService extends IntentService {
From source file eu.codeplumbers.cosi.services.CosiNoteService.java
/** * Created by thor on 10/29/16. */ public class CosiNoteService extends IntentService {
From source file com.cyanogenmod.updater.service.UpdateCheckService.java
private static final boolean TESTING_DOWNLOAD = false; // request actions public static final String ACTION_CHECK = "com.cyanogenmod.cmupdater.action.CHECK"; public static final String ACTION_CANCEL_CHECK = "com.cyanogenmod.cmupdater.action.CANCEL_CHECK";
From source file app.androidhive.info.realm.GCM.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.