OpenSwoole Server getWorkerStatus()

Latest version: pecl install openswoole-22.1.2 | composer require openswoole/core:22.1.5

Declaration

<?php OpenSwoole\Server->getWorkerStatus(int $workerId): int|bool

Parameters

none

Return

workerStatus

Return the worker process status value as an integer. This value indicates the workers state.

Description

By passing in the worker process ID you can retrieve the worker status as an integer.

Worker Status Values

  • OpenSwoole\Constant::WORKER_BUSY (1): The worker process is busy.
  • OpenSwoole\Constant::WORKER_IDLE (2): The worker process is idle.
  • OpenSwoole\Constant::WORKER_EXIT (3): When you have the Swoole server set to reload on code changes, there may be two worker processes with the same ID, an old one and a new one, the old worker process waiting to finish and be replaced by the new one will have the exit status.

Available since > v4.5.0

Last updated on September 20, 2022