Files
2022-04-10 15:34:12 +08:00

24 lines
278 B
PHP

<?php
namespace Kiri\Server\Events;
use Swoole\Server;
/**
*
*/
class OnWorkerExit
{
/**
* @param Server|null $server
* @param int $workerId
*/
public function __construct(public ?Server $server, public int $workerId)
{
}
}