JobInfo.PriorityLow Field

Definition

Caution

This constant will be removed in the future version. Use Android.App.Job.JobPriority enum directly instead of this field.

Low priority.

[Android.Runtime.Register("PRIORITY_LOW", ApiSince=33)]
[System.Obsolete("This constant will be removed in the future version. Use Android.App.Job.JobPriority enum directly instead of this field.", true)]
public const Android.App.Job.JobPriority PriorityLow = 200;
[<Android.Runtime.Register("PRIORITY_LOW", ApiSince=33)>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.App.Job.JobPriority enum directly instead of this field.", true)>]
val mutable PriorityLow : Android.App.Job.JobPriority

Field Value

Value = 200

Implements

Attributes

Remarks

Low priority. The task provides some benefit to users, but is not critical and is more of a nice-to-have. This is more important than minimum priority jobs and will be prioritized ahead of them, but may still be deferred in lieu of higher priority jobs. JobScheduler may decide to defer these tasks while there are higher priority tasks in order to ensure there is sufficient quota available for the higher priority tasks. A sample task of low priority: prefetching data the user hasn't requested

Java documentation for android.app.job.JobInfo.PRIORITY_LOW.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to