JobInfo.PriorityMin Field

Definition

Caution

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

Job has minimal value to the user.

[Android.Runtime.Register("PRIORITY_MIN", 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 PriorityMin = 100;
[<Android.Runtime.Register("PRIORITY_MIN", 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 PriorityMin : Android.App.Job.JobPriority

Field Value

Value = 100

Implements

Attributes

Remarks

Job has minimal value to the user. The user has absolutely no expectation or knowledge of this task and it has no bearing on the user's perception of the app whatsoever. 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 min priority: uploading analytics

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

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