web/lib/Zend/Http/Client/Adapter/Stream.php
changeset 886 1e110b03ae96
parent 807 877f952ae2bd
child 1230 68c69c656a2c
equal deleted inserted replaced
885:2251fb41dbc7 886:1e110b03ae96
    14  * to license@zend.com so we can send you a copy immediately.
    14  * to license@zend.com so we can send you a copy immediately.
    15  *
    15  *
    16  * @category   Zend
    16  * @category   Zend
    17  * @package    Zend_Http
    17  * @package    Zend_Http
    18  * @subpackage Client_Adapter
    18  * @subpackage Client_Adapter
    19  * @version    $Id: Stream.php 20785 2010-01-31 09:43:03Z mikaelkael $
    19  * @version    $Id: Stream.php 24593 2012-01-05 20:35:02Z matthew $
    20  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    20  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    21  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    21  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    22  */
    22  */
    23 
    23 
    24 /**
    24 /**
    25  * An interface description for Zend_Http_Client_Adapter_Stream classes.
    25  * An interface description for Zend_Http_Client_Adapter_Stream classes.
    27  * This interface decribes Zend_Http_Client_Adapter which supports streaming.
    27  * This interface decribes Zend_Http_Client_Adapter which supports streaming.
    28  *
    28  *
    29  * @category   Zend
    29  * @category   Zend
    30  * @package    Zend_Http
    30  * @package    Zend_Http
    31  * @subpackage Client_Adapter
    31  * @subpackage Client_Adapter
    32  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    32  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    33  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    33  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    34  */
    34  */
    35 interface Zend_Http_Client_Adapter_Stream
    35 interface Zend_Http_Client_Adapter_Stream
    36 {
    36 {
    37     /**
    37     /**
    38      * Set output stream
    38      * Set output stream
    39      * 
    39      *
    40      * This function sets output stream where the result will be stored.
    40      * This function sets output stream where the result will be stored.
    41      * 
    41      *
    42      * @param resource $stream Stream to write the output to
    42      * @param resource $stream Stream to write the output to
    43      * 
    43      *
    44      */
    44      */
    45     function setOutputStream($stream);
    45     public function setOutputStream($stream);
    46 }
    46 }