]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - Zend/Http/Client/Adapter/Stream.php
Release 6.5.0
[Github/sugarcrm.git] / Zend / Http / Client / Adapter / Stream.php
1 <?php
2
3 /**
4  * Zend Framework
5  *
6  * LICENSE
7  *
8  * This source file is subject to the new BSD license that is bundled
9  * with this package in the file LICENSE.txt.
10  * It is also available through the world-wide-web at this URL:
11  * http://framework.zend.com/license/new-bsd
12  * If you did not receive a copy of the license and are unable to
13  * obtain it through the world-wide-web, please send an email
14  * to license@zend.com so we can send you a copy immediately.
15  *
16  * @category   Zend
17  * @package    Zend_Http
18  * @subpackage Client_Adapter
19
20  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
21  * @license    http://framework.zend.com/license/new-bsd     New BSD License
22  */
23
24 /**
25  * An interface description for Zend_Http_Client_Adapter_Stream classes.
26  *
27  * This interface decribes Zend_Http_Client_Adapter which supports streaming.
28  *
29  * @category   Zend
30  * @package    Zend_Http
31  * @subpackage Client_Adapter
32  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
33  * @license    http://framework.zend.com/license/new-bsd     New BSD License
34  */
35 interface Zend_Http_Client_Adapter_Stream
36 {
37     /**
38      * Set output stream
39      * 
40      * This function sets output stream where the result will be stored.
41      * 
42      * @param resource $stream Stream to write the output to
43      * 
44      */
45     function setOutputStream($stream);
46 }