Enum JobPriority
- Namespace
- Misaki.HighPerformance.Jobs
- Assembly
- Misaki.HighPerformance.Jobs.dll
The priority level of a job.
public enum JobPriority
Fields
High = 1High 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 = 2Low priority. Which will have 12.5% chance to be picked when there are multiple jobs ready to run.
Normal = 0Normal priority. Which will have 37.5% chance to be picked when there are multiple jobs ready to run.