PHPDaemon\Network\IOStream::unfreezeOutput PHP Method

unfreezeOutput() public method

Unfreeze output
public unfreezeOutput ( boolean $at_front = true ) : boolean
$at_front boolean At front. Default is true. If the front of a buffer is frozen, operations that drain data from the front of the buffer, or that prepend data to the buffer, will fail until it is unfrozen. If the back a buffer is frozen, operations that append data from the buffer will fail until it is unfrozen
return boolean Success
    public function unfreezeOutput($at_front = true)
    {
        if (isset($this->bev)) {
            return $this->bev->output->unfreeze($at_front);
        }
        return false;
    }