Package org.robolectric.shadows
Class ShadowJobScheduler
java.lang.Object
org.robolectric.shadows.ShadowJobScheduler
- Direct Known Subclasses:
ShadowJobScheduler.ShadowJobSchedulerImpl
@Implements(value=android.app.job.JobScheduler.class, minSdk=21) public abstract class ShadowJobScheduler extends Object
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classShadowJobScheduler.ShadowJobSchedulerImpl -
Constructor Summary
Constructors Constructor Description ShadowJobScheduler() -
Method Summary
Modifier and Type Method Description protected abstract voidcancel(int jobId)protected abstract voidcancelAll()protected abstract intenqueue(JobInfo job, JobWorkItem work)abstract voidfailExpeditedJob(boolean enabled)Whether to fail a job if it is set as expedited.abstract voidfailOnJob(int jobId)protected abstract List<JobInfo>getAllPendingJobs()abstract JobInfogetPendingJob(int jobId)protected abstract intschedule(JobInfo job)protected abstract intscheduleAsPackage(JobInfo job, String packageName, int userId, String tag)
-
Constructor Details
-
ShadowJobScheduler
public ShadowJobScheduler()
-
-
Method Details
-
schedule
-
scheduleAsPackage
@Implementation(minSdk=24) @HiddenApi protected abstract int scheduleAsPackage(JobInfo job, String packageName, int userId, String tag) -
cancel
-
cancelAll
-
getAllPendingJobs
-
getPendingJob
-
enqueue
-
failOnJob
public abstract void failOnJob(int jobId) -
failExpeditedJob
public abstract void failExpeditedJob(boolean enabled)Whether to fail a job if it is set as expedited.
-