SchedulerPriorities (等级)
在 scheduler/src/SchedulerPriorities.js 文件中导出了定义的 PriorityLevel (优先级)
// 优先级等级
export type PriorityLevel = 0 | 1 | 2 | 3 | 4 | 5;
// TODO: Use symbols?
/** 官方似乎考虑打算使用 symbols 做优先级
* 但是个人觉得其实没什么实际意义,
* 收益不大,可能我目光比较窄吧
* */
/** 无优先级 */
export const NoPriority = 0;
/** 紧急优先 */
export const ImmediatePriority = 1;
/** 用户阻止级优先级 */
export const UserBlockingPriority = 2;
/** 普通优先级 */
export const NormalPriority = 3;
/** 低优先级 */
export const LowPriority = 4;
/** 空闲优先级 */
export const IdlePriority = 5;