Table of Contents

Enum JobPriority

Namespace
Misaki.HighPerformance.Jobs
Assembly
Misaki.HighPerformance.Jobs.dll

The priority level of a job.

public enum JobPriority

Fields

High = 1

High priority. Which will have 50.0% chance to be picked when there are multiple jobs ready to run. This is useful for jobs that are on the critical path of the execution and we want to prioritize their completion.

Low = 2

Low priority. Which will have 12.5% chance to be picked when there are multiple jobs ready to run.

Normal = 0

Normal priority. Which will have 37.5% chance to be picked when there are multiple jobs ready to run.