2022-01-09 03:49:02 +08:00
|
|
|
<?php
|
|
|
|
|
|
2022-01-10 11:39:55 +08:00
|
|
|
namespace Kiri\Server\Events;
|
2022-01-09 03:49:02 +08:00
|
|
|
|
|
|
|
|
use Swoole\Server;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
class OnWorkerExit
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
2022-04-10 15:34:12 +08:00
|
|
|
/**
|
|
|
|
|
* @param Server|null $server
|
|
|
|
|
* @param int $workerId
|
|
|
|
|
*/
|
|
|
|
|
public function __construct(public ?Server $server, public int $workerId)
|
2022-01-09 03:49:02 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|