PHPDaemon\SockJS\WebSocketConnectionProxy::onFrame PHP Method

onFrame() public method

Called when new frame received.
public onFrame ( string $data, string $type ) : boolean
$data string Frame's data.
$type string Frame's type ("STRING" OR "BINARY").
return boolean Success.
    public function onFrame($data, $type)
    {
        $this->realConn->onFrame($data, $type);
    }