Thruway\Transport\RatchetTransportProvider::onPong PHP Метод

onPong() публичный Метод

Handle on pong
public onPong ( Ratchet\ConnectionInterface $from, Ratchet\WebSocket\Version\RFC6455\Frame $frame )
$from Ratchet\ConnectionInterface
$frame Ratchet\WebSocket\Version\RFC6455\Frame
    public function onPong(ConnectionInterface $from, Frame $frame)
    {
        $transport = $this->sessions[$from];
        if (method_exists($transport, 'onPong')) {
            $transport->onPong($frame);
        }
    }