PHP 8.5.0 RC4 available for testing

The Pcntl\QosClass Enum

(No version information available, might only be in Git)

Вступ

The Pcntl\QosClass enum is used to specify the user process priority with pcntl_setqos_class().

Кородкий огляд переліку

enum Pcntl\QosClass
{
case Background ; // Runs the process after all high-priority ones had ran their courses.

case Default ; // Runs the process after all high-priority processes but before the low-priority ones.

case UserInteractive ; // Runs the process as the highest priority level.

case UserInitiated ; // Runs the process at high priority level but below UserInteractive ones.

}
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top