2021-11-03 15:17:52 +08:00
|
|
|
<?php
|
|
|
|
|
|
2021-11-18 11:37:12 +08:00
|
|
|
namespace Server\Contract;
|
2021-11-03 15:17:52 +08:00
|
|
|
|
|
|
|
|
use Swoole\Server;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
interface OnCloseInterface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param Server $server
|
|
|
|
|
* @param int $fd
|
|
|
|
|
*/
|
|
|
|
|
public function onClose(Server $server, int $fd): void;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|