Example usage for android.support.v4.app JobIntentService subclass-usage

List of usage examples for android.support.v4.app JobIntentService subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.app JobIntentService subclass-usage.

Usage

From source file com.commonsware.android.backup.BackupService.java

public class BackupService extends JobIntentService {
    private static final int UNIQUE_JOB_ID = 1338;
    static final OkHttpClient OKHTTP_CLIENT = new OkHttpClient();
    static final String ZIP_PREFIX_FILES = "files/";
    static final String ZIP_PREFIX_PREFS = "shared_prefs/";
    static final String ZIP_PREFIX_EXTERNAL = "external/";

From source file de.eidottermihi.rpicheck.widget.WidgetUpdateService.java

/**
 * @author eidottermihi
 */
public class WidgetUpdateService extends JobIntentService {

    private static final Logger LOGGER = LoggerFactory.getLogger(WidgetUpdateService.class);

From source file org.cm.podd.report.service.GcmIntentService.java

public class GcmIntentService extends JobIntentService {

    public static final int NOTIFICATION_ID = 1;
    static final int JOB_ID = 700;
    private static final String TAG = "GcmIntentService";

From source file arun.com.chromer.browsing.customtabs.dynamictoolbar.AppColorExtractorJob.java

public class AppColorExtractorJob extends JobIntentService {

    public static final int JOB_ID = 112;

    @Inject
    AppRepository appRepository;

From source file org.site_monitor.service.NetworkService.java

/**
 * An {@link IntentService} subclass for handling asynchronous task requests in
 * a service on a separate handler thread.
 */
public class NetworkService extends JobIntentService {

From source file com.none.tom.simplerssreader.service.FeedUpdateBackgroundService.java

public class FeedUpdateBackgroundService extends JobIntentService {
    private static final String NOTIFICATION_CHANNEL_ID = "com.none.tom.simplerssreader.service";
    private static final String NOTIFICATION_CHANNEL_NAME = "Feed Updates";

    private static final int ID_NOTIFICATION = 1;

From source file com.money.manager.ex.sync.SyncService.java

/**
 * The background service that synchronizes the database file.
 * It is being invoked by the timer.
 * It displays the sync notification and invokes the cloud api.
 *
 * Changed to JobIntentService as per

From source file org.cm.podd.report.service.DataSubmitService.java

public class DataSubmitService extends JobIntentService {

    static final int JOB_ID = 300;
    private static final String TAG = "DataSubmitService";
    private static final String S3IMAGE_URL_PREFIX = "https://s3-ap-southeast-1.amazonaws.com/"
            + BuildConfig.BUCKET_NAME + "/";