2023-04-21 23:09:35 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Kiri\Server\Contract;
|
|
|
|
|
|
|
|
|
|
use Swoole\WebSocket\Server;
|
|
|
|
|
|
|
|
|
|
interface OnDisconnectInterface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2026-02-26 14:39:04 +08:00
|
|
|
* @param Server|\Swoole\Coroutine\Http\Server $server
|
|
|
|
|
* @param int $fd
|
2023-04-21 23:09:35 +08:00
|
|
|
* @return void
|
|
|
|
|
*/
|
2026-02-26 14:39:04 +08:00
|
|
|
public function onDisconnect(Server|\Swoole\Coroutine\Http\Server $server, int $fd): void;
|
2023-04-21 23:09:35 +08:00
|
|
|
|
|
|
|
|
}
|