Example usage for Java android.app.job JobScheduler fields, constructors, methods, implement or subclass
The text is from its open source code.
int | RESULT_SUCCESS Returned from #schedule(JobInfo) if this job has been successfully scheduled. |
void | cancel(int jobId) Cancel the specified job. |
void | cancelAll() Cancel all jobs that have been scheduled by the calling application. |
List | getAllPendingJobs() Retrieve all jobs that have been scheduled by the calling application. |
JobInfo | getPendingJob(int jobId) Look up the description of a scheduled job. |
int | schedule(@NonNull JobInfo job) Schedule a job to be executed. |