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

24 lines
232 B
PHP
Raw Normal View History

2021-08-03 18:18:09 +08:00
<?php
namespace Server\Events;
use Swoole\Server;
/**
*
*/
class OnWorkerStop
{
/**
* @param Server $server
* @param int $workerId
*/
2021-10-29 14:10:53 +08:00
public function __construct(public Server $server, public int $workerId)
2021-08-03 18:18:09 +08:00
{
}
}