diff options
| author | 2021-04-28 15:11:46 +0000 | |
|---|---|---|
| committer | 2021-04-28 15:11:46 +0000 | |
| commit | f1f615d992db43c551466b1b6d5506ec5f9ca9f7 (patch) | |
| tree | e972f14953f5b1904c3823c9e3540c9a635dff47 | |
| parent | 4a44c4f4d7f5035510bec821e0ae23a3ee0f1ada (diff) | |
| parent | b2fa0cabc18c29b6150556d76e006118a7e78e03 (diff) | |
Merge "Note that user engagement replenishes EJ quota." into sc-dev
| -rw-r--r-- | apex/jobscheduler/framework/java/android/app/job/JobInfo.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apex/jobscheduler/framework/java/android/app/job/JobInfo.java b/apex/jobscheduler/framework/java/android/app/job/JobInfo.java index 57293856a9ad..17682a5b655a 100644 --- a/apex/jobscheduler/framework/java/android/app/job/JobInfo.java +++ b/apex/jobscheduler/framework/java/android/app/job/JobInfo.java @@ -1513,6 +1513,11 @@ public class JobInfo implements Parcelable { * available quota (and the job will not be successfully scheduled). * * <p> + * Expedited job quota will replenish over time and as the user interacts with the app, + * so you should not have to worry about running out of quota because of processing from + * frequent user engagement. + * + * <p> * Expedited jobs may only set network, storage-not-low, and persistence constraints. * No other constraints are allowed. * |