List of usage examples for android.app IntentService subclass-usage
From source file com.aylanetworks.aura.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 net.zionsoft.obadiah.model.notification.PushNotificationHandler.java
public class PushNotificationHandler extends IntentService { private static final String KEY_EXTRAS = "net.zionsoft.obadiah.model.notification.PushNotificationHandler.KEY_EXTRAS"; public static Intent newStartIntent(Context context, Bundle extras) { return new Intent(context, PushNotificationHandler.class).putExtra(KEY_EXTRAS, extras); }
From source file com.manning.androidhacks.hack043.service.BatchService.java
public class BatchService extends IntentService { private static final String TAG = BatchService.class.getCanonicalName(); public BatchService() { super(BatchService.class.getSimpleName()); }
From source file gxu.software_engineering.market.android.service.SyncService.java
/**
*
* @author longkai()
* @email im.longkai@gmail.com
* @since 2013-6-25
*/
From source file eu.inmite.apps.smsjizdenka.service.UpdateService.java
/** * Service which updates ticket database. * * @author David Vvra (david@inmite.eu) */ public class UpdateService extends IntentService {
From source file org.ohmage.appwidget.StressButtonService.java
public class StressButtonService extends IntentService { private static final String TAG = "StressButtonService"; private Handler mHandler;
From source file com.tangyu.component.service.sync.TYSyncService.java
/** * CURRENT ONLY SUPPORT POST REQUEST. * @author binliu on 1/11/14. */ public class TYSyncService extends IntentService {
From source file app.jorge.mobile.com.transportalert.alarm.ServiceAlarm.java
public class ServiceAlarm extends IntentService implements Callback<List<StatusLine>> { private static String TAG = ServiceAlarm.class.getSimpleName(); NotificationManager notificationManager;
From source file org.transdroid.core.service.AppUpdateService.java
import android.support.v4.app.NotificationCompat.Builder; @EService public class AppUpdateService extends IntentService { private static final String LATEST_URL_APP = "http://www.transdroid.org/update/latest-app.php";
From source file com.carpool.dj.carpool.model.GcmIntentService.java
/** * IntentService responsible for handling GCM messages. */ @SuppressLint({ "HandlerLeak", "NewApi" }) public class GcmIntentService extends IntentService { public static final int NOTIFICATION_ID = 1;