WinJS.Utilities.Scheduler.Priority enumeration

Represents a priority for a job managed by the Scheduler.

Syntax

var WinJS.Utilities.Scheduler.Priority = {
  aboveNormal : 9, 
  belowNormal : -9, 
  high : 13, 
  idle : -13, 
  max : 15, 
  min : -15, 
  normal : 0
}

Members

The Priority enumeration has these members.

Member Value Description
aboveNormal 9

A priority higher than the normal priority level.

belowNormal -9

A priority less than the normal priority level.

high 13

A high priority.

idle -13

The idle priority for work items.

max 15

The highest priority.

min -15

The lowest priority.

normal 0

The normal priority for work items.

Requirements

Minimum WinJS version

WinJS 2.0

Namespace

WinJS.Utilities.Scheduler