Files
kiri-core/http-server/Events/OnWorkerError.php
T

27 lines
378 B
PHP
Raw Normal View History

2021-08-03 18:18:09 +08:00
<?php
namespace Server\Events;
use Swoole\Server;
/**
*
*/
class OnWorkerError
{
/**
* @param Server $server
2021-08-17 18:35:11 +08:00
* @param int $worker_id
* @param int $worker_pid
* @param int $exit_code
* @param int $signal
2021-08-03 18:18:09 +08:00
*/
2021-10-29 14:10:53 +08:00
public function __construct(public Server $server, public int $worker_id, public int $worker_pid, public int $exit_code, public int $signal)
2021-08-03 18:18:09 +08:00
{
}
}