Zend_Gdata_HttpClient::setRawDataStream PHP Method

setRawDataStream() public method

This is used to support POSTing from open file handles without caching the entire body into memory. It is a wrapper around Zend_Http_Client::setRawData().
public setRawDataStream ( string $data, string $enctype = null ) : Zend_Http_Client
$data string The request data
$enctype string The encoding type
return Zend_Http_Client
    public function setRawDataStream($data, $enctype = null)
    {
        $this->_streamingRequest = true;
        return $this->setRawData($data, $enctype);
    }