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