2023-04-21 23:17:55 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Kiri\Server\Contract;
|
|
|
|
|
|
|
|
|
|
use Swoole\Server;
|
|
|
|
|
use Swoole\WebSocket\Frame;
|
|
|
|
|
|
|
|
|
|
interface OnMessageInterface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2026-02-26 14:39:04 +08:00
|
|
|
* @param Server|\Swoole\Coroutine\Http\Server $server
|
|
|
|
|
* @param Frame $frame
|
2023-04-21 23:17:55 +08:00
|
|
|
* @return void
|
|
|
|
|
*/
|
2026-02-26 14:39:04 +08:00
|
|
|
public function onMessage(Server|\Swoole\Coroutine\Http\Server $server, Frame $frame): void;
|
2023-04-21 23:17:55 +08:00
|
|
|
|
|
|
|
|
}
|