PHP 8.4.1 Released!

The QosClass Enum

Вступ

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

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

enum QosClass
{
case Pcntl::Background ;
/** Runs the process after all high-priority ones had ran their courses. */
case Pcntl::Default ;
/** Runs the process after all high-priority processes but before the low-priority ones. */
case Pcntl::UserInteractive ;
/** Runs the process as the highest priority level. */
case Pcntl::UserInitiated ;
/** Runs the process at high priority level but below Pcntl::UserInteractive ones. */
}
add a note

User Contributed Notes

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