List of usage examples for android.app IntentService subclass-usage
From source file com.dycody.android.idealnote.async.DataBackupIntentService.java
public class DataBackupIntentService extends IntentService implements OnAttachingFileListener { public final static String INTENT_BACKUP_NAME = "backup_name"; public final static String INTENT_BACKUP_INCLUDE_SETTINGS = "backup_include_settings"; public final static String ACTION_DATA_EXPORT = "action_data_export"; public final static String ACTION_DATA_IMPORT = "action_data_import";
From source file com.heneryh.aquanotes.service.SyncService.java
/** * Background {@link Service} that synchronizes data living in * {@link AquaNotesDbProvider}. Reads data from remote controllers. */ public class SyncService extends IntentService { private static final String TAG = "SyncService";
From source file com.google.android.apps.muzei.api.MuzeiArtSource.java
/**
* Base class for a Muzei Live Wallpaper artwork source. Art sources are a way for other apps to
* feed wallpapers (called {@linkplain Artwork artworks}) to the Muzei Live Wallpaper. Art sources
* are specialized {@link IntentService} classes.
*
* <p> Only one source can be selected at a time. When the user chooses a source, the Muzei app
From source file at.vcity.androidimsocket.services.IMService.java
/**
*
* <p>Notice the use of the {@link NotificationManager} when interesting things
* happen in the service. This is generally how background services should
* interact with the user, rather than doing something more disruptive such as
* calling startActivity().
From source file com.heneryh.aquanotes.service.NightlyService.java
/** * Background {@link Service} that does some nightly cleanup */ public class NightlyService extends IntentService { private static final String TAG = "NightlyService";
From source file org.akvo.flow.service.DataSyncService.java
/**
*
* Handle survey export and sync in a background thread. The export process takes
* no arguments, and will try to zip all the survey instances with a SUBMITTED status
* but with no EXPORT_DATE (export hasn't happened yet). Ideally, and if the service has been
* triggered by a survey submission, only one survey instance will be exported. However, if for
From source file eu.codeplumbers.cosi.services.CosiContactService.java
/** * Created by thor on 10/29/16. */ public class CosiContactService extends IntentService {
From source file net.niyonkuru.koodroid.service.SessionService.java
/** * Authenticates a username and password with the Koodo web server and sends back a result to the caller. */ public class SessionService extends IntentService { private static final String TAG = "SessionService";
From source file com.ibm.mobilefirstplatform.clientsdk.android.push.api.MFPPushIntentService.java
/**
* MFPPushIntentService responsible for handling communication from GCM (Google
* Cloud Messaging). This class should be configured as the GCM intent service
* in AndroidManifest.xml of the android application as follows:
* <p/>
* <pre>
From source file org.csploit.android.services.UpdateService.java
public class UpdateService extends IntentService { // Intent defines public static final String START = "UpdateService.action.START"; public static final String ERROR = "UpdateService.action.ERROR"; public static final String DONE = "UpdateService.action.DONE"; public static final String UPDATE = "UpdateService.data.UPDATE";