Files
kiri-core/http-server/Events/OnTaskerStart.php
T
as2252258@163.com ff58d0faef 111
2021-09-19 16:42:29 +08:00

24 lines
254 B
PHP

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