PHP 8.5.0 Alpha 4 available for testing

Pcntl\QosClass Enum

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

はじめに

列挙型の Pcntl\QosClass は、pcntl_setqos_class() を使用して ユーザプロセスの優先度指定するために使用されます。

列挙型概要

enum Pcntl\QosClass
{
case Background ; // 全ての優先度が高いプロセスが終了した後に、このプロセスが実行されます。

case Default ; // 全ての優先度が高いプロセスが終了した後、優先度の低いプロセスの前にこのプロセスが実行されます。

case UserInteractive ; // 最優先レベルでプロセスを実行します。

case UserInitiated ; // 最優先レベルでプロセスを実行しますが、 UserInteractive より後になります。

}
add a note

User Contributed Notes

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