PHPDaemon\SockJS\Methods\Generic::outputFrame PHP Method

outputFrame() public method

Output some data
public outputFrame ( string $s, boolean $flush = true ) : boolean
$s string String to out
$flush boolean
return boolean Success
    public function outputFrame($s, $flush = true)
    {
        $this->bytesSent += mb_orig_strlen($s);
        return parent::out($s, $flush);
    }