Files
kiri-http-server/Events/OnTaskerStart.php
T
2022-06-16 17:38:22 +08:00

26 lines
309 B
PHP

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