如何使用GatewayWorker创建TCP客户端,去连接已有的tcp服务端
$client = new AsyncTcpconnect("tcp://xvxvsvd:ewfwe"); $client->onMessage(xxx); 差不多类似于workerman 那种回调函数使用方式 。
提醒:这种方式连接必须在workerman 环境,其余fpm 都是不支持的哦。 不支持原因:因为他是EPoll 实现的,其余环境没有这个条件。也就是非阻塞IO
https://www.workerman.net/doc/workerman/tcp-connection/send.html
$client = new AsyncTcpconnect("tcp://xvxvsvd:ewfwe");
$client->onMessage(xxx);
差不多类似于workerman 那种回调函数使用方式 。
提醒:这种方式连接必须在workerman 环境,其余fpm 都是不支持的哦。
不支持原因:因为他是EPoll 实现的,其余环境没有这个条件。也就是非阻塞IO
https://www.workerman.net/doc/workerman/tcp-connection/send.html