source: extensions/Google2Piwigo/include/Zend/Http/Client/Adapter/Stream.php @ 17475

Last change on this file since 17475 was 17475, checked in by mistic100, 12 years ago

new extension: Google2Piwigo

File size: 1.4 KB
Line 
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 * @version    $Id: Stream.php 24594 2012-01-05 21:27:01Z matthew $
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
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-2012 Zend Technologies USA Inc. (http://www.zend.com)
33 * @license    http://framework.zend.com/license/new-bsd     New BSD License
34 */
35interface 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    public function setOutputStream($stream);
46}
Note: See TracBrowser for help on using the repository browser.