Files
kiri-http-server/Contract/OnMessageInterface.php
T
2026-02-26 14:39:04 +08:00

20 lines
356 B
PHP

<?php
namespace Kiri\Server\Contract;
use Swoole\Server;
use Swoole\WebSocket\Frame;
interface OnMessageInterface
{
/**
* @param Server|\Swoole\Coroutine\Http\Server $server
* @param Frame $frame
* @return void
*/
public function onMessage(Server|\Swoole\Coroutine\Http\Server $server, Frame $frame): void;
}