Luna::ThreadPriority

enum ThreadPriority : i32
{
    low= 0
    normal= 1
    high= 2
    critical= 3
}

Specifies the thread schedule priority.

Options

  • low

    The low priority.

  • normal

    The default priority assigned by the system when the thread is created.

  • high

    The high priority.

  • critical

    The highest priority possible for the system.