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

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

Introduction

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

Usage

From source file com.evernote.android.job.v14.PlatformAlarmService.java

/**
 * @author rwondratschek
 */
@RestrictTo(RestrictTo.Scope.LIBRARY)
public final class PlatformAlarmService extends SafeJobIntentService {

From source file com.evernote.android.job.JobRescheduleService.java

/**
 * This service reschedules your jobs in case this should be necessary. Usually rescheduling is necessary
 * after a reboot. If you don't want that your jobs are rescheduled, then you should use a transient job
 * or cancel your job manually.
 *
 * @author rwondratschek